aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t2241.scala
blob: 4801749f8bdbf4eb7865d48d4a84c609baca05d0 (plain) (blame)
1
2
3
4
5
6
7
object Test extends dotty.runtime.LegacyApp {
  def f(a:Array[Int]) = a match {
    case Array(1, _*) => "yes"
    case _ => "no"
  }
  assert(f(null) == "no")
}