summaryrefslogtreecommitdiff
path: root/test/files/pos/t5967.scala
blob: eb9bd6dfa7fa9e5f522c450cb5d2014a85d55143 (plain) (blame)
1
2
3
4
5
6
object Test {
	def f(a: Int*) = a match {
	  case 0 :: Nil => "List(0)! My favorite Seq!"
	  case _ => a.toString
	}
}