summaryrefslogtreecommitdiff
path: root/test/files/run/matchbytes.scala
blob: 7190886bab7bbd063e539caf1ed997a77f161b0f (plain) (blame)
1
2
3
4
5
6
7
object Test extends App{
  val x = (1 : Byte) match {
    case 2 => println(2);
    case 1 => println(1);
    case _ => println("????");
  }
}