aboutsummaryrefslogtreecommitdiff
path: root/tests/run/matchbytes.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run/matchbytes.scala')
-rw-r--r--tests/run/matchbytes.scala7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/run/matchbytes.scala b/tests/run/matchbytes.scala
new file mode 100644
index 000000000..b4455e8f4
--- /dev/null
+++ b/tests/run/matchbytes.scala
@@ -0,0 +1,7 @@
+object Test extends dotty.runtime.LegacyApp{
+ val x = (1 : Byte) match {
+ case 2 => println(2);
+ case 1 => println(1);
+ case _ => println("????");
+ }
+}