DEBSOURCES
Skip Quicknav
sources / scala / 2.11.12-6 / test / files / pos / t1136.scala
12345678
object test { def foo(s: Int*) { s.toList match { case t: List[Int] => foo(t: _*) //case _ => // unreachable code } } }