summaryrefslogtreecommitdiff
path: root/test/pending/pos/switchUnbox.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/pos/switchUnbox.scala')
-rw-r--r--test/pending/pos/switchUnbox.scala11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/pending/pos/switchUnbox.scala b/test/pending/pos/switchUnbox.scala
deleted file mode 100644
index a97bff5521..0000000000
--- a/test/pending/pos/switchUnbox.scala
+++ /dev/null
@@ -1,11 +0,0 @@
-// this test has accompanying .flags file
-// that contains -Xsqueeze:on
-//
-object Foo {
- var xyz: (int, String) = (1, "abc")
- xyz._1 match {
- case 1 => Console.println("OK")
- case 2 => Console.println("OK")
- case _ => Console.println("KO")
- }
-}