aboutsummaryrefslogblamecommitdiff
path: root/tests/pos/t7294.scala
blob: ccac2b14005f14bf37fa06f1e635f71657c411bf (plain) (tree)
1
2
3
4
5
6





                                                        
object Test {
  // no fruitless warning as Tuple2 isn't (yet) final.
  // The corresponding `neg` test will treat it as final
  // for the purposes of these tests under -Xfuture.
  (1, 2) match { case Seq() => 0; case _ => 1 }
}