summaryrefslogtreecommitdiff
path: root/test/files/pos/switchUnbox.scala
blob: 4f5467de297c66d63f324502c47b2833f8e21679 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// this test has accompanying .flags file
//  that contains -Xsqueeze:on
//
object Foo {
  var xyz: (Int, String) = (1, "abc")
  xyz._1 match {
    case 1 => Console.println("OK")
    case 2 => Console.println("OK")
    case _ => Console.println("KO")
  }
}