summaryrefslogtreecommitdiff
path: root/test/files/run/bug2241.scala
blob: 58cc46fe69d2f6549bd76a48b61bb5e73d9b2eae (plain) (blame)
1
2
3
4
5
6
7
object Test extends Application {
  def f(a:Array[Int]) = a match {
    case Array(1, _*) => "yes"
    case _ => "no"
  }
  assert(f(null) == "no")
}