summaryrefslogtreecommitdiff
path: root/test/files/run/matchbytes.scala
blob: f2cea06eb3621b1d645072156e4064b827935855 (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("????");
  }
}