summaryrefslogtreecommitdiff
path: root/test/files/run/unboxmatch.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/unboxmatch.scala')
-rw-r--r--test/files/run/unboxmatch.scala10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/files/run/unboxmatch.scala b/test/files/run/unboxmatch.scala
deleted file mode 100644
index e354798ebd..0000000000
--- a/test/files/run/unboxmatch.scala
+++ /dev/null
@@ -1,10 +0,0 @@
-object Test extends Application {
- var xyz: (int, String, boolean) = _
- xyz = (1, "abc", true)
- Console.println(xyz)
- xyz._1 match {
- case 1 => Console.println("OK")
- case 2 => Console.println("KO")
- case 3 => Console.println("KO")
- }
-}