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