aboutsummaryrefslogblamecommitdiff
path: root/tests/run/matchbytes.scala
blob: b4455e8f4ddb056cfdf097a4a9ce94a8f5faf9b2 (plain) (tree)
1
2
3
4
5
6
7






                                            
object Test extends dotty.runtime.LegacyApp{
  val x = (1 : Byte) match {
    case 2 => println(2);
    case 1 => println(1);
    case _ => println("????");
  }
}