Scala 2 only accepts varargs patterns with `@`: ``` scala case List(1, 2, xs @ _*) => ``` whereas dotty only accepts varargs patterns with `:` (see PR https://github.com/lampepfl/dotty/pull/168): ``` scala case List(1, 2, xs : _*) => ``` So I wonder if this breaking change was intentional? If yes, I'll add this to the rewriting tool.