summaryrefslogtreecommitdiff
path: root/test/files/neg/t910.scala
blob: cc47104d14f94211f4b0dc3f68870724b906aba3 (plain) (blame)
1
2
3
4
5
6
7
object RegExpTest1 extends App {
  def co(x: Seq[Char]) = x match {
    case Seq('s','c','a','l','a', rest @ _*) =>
    val y: Seq[Int] = rest
        y
  }
}