summaryrefslogblamecommitdiff
path: root/test/files/pos/t1136.scala
blob: e505badc9cb0252b56bbb305feeaecf8f2b4a5ec (plain) (tree)
1
2
3
4
5
6
7
8
             
                    

                                     
                                      


     
object test {
  def foo(s: Int*) {
    s.toList match {
      case t: List[Int] => foo(t: _*)
      //case _ =>  // unreachable code
    }
  }
}