summaryrefslogtreecommitdiff
path: root/test/files/pos/switchUnbox.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2009-10-07 17:07:27 +0000
committerPaul Phillips <paulp@improving.org>2009-10-07 17:07:27 +0000
commit6b31849b85532946cb90b2552cb451b58dbd884d (patch)
tree6c343195529c27d43710ae14f77ffc079ccc3ebb /test/files/pos/switchUnbox.scala
parent9f121f57e034a7feb07bad7f67403f3ac75b46d4 (diff)
downloadscala-6b31849b85532946cb90b2552cb451b58dbd884d.tar.gz
scala-6b31849b85532946cb90b2552cb451b58dbd884d.tar.bz2
scala-6b31849b85532946cb90b2552cb451b58dbd884d.zip
Moved a pile of passing tests from pending to f...
Moved a pile of passing tests from pending to files, fixed some untesty tests, and will now close the associated tickets.
Diffstat (limited to 'test/files/pos/switchUnbox.scala')
-rw-r--r--test/files/pos/switchUnbox.scala11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/files/pos/switchUnbox.scala b/test/files/pos/switchUnbox.scala
new file mode 100644
index 0000000000..a97bff5521
--- /dev/null
+++ b/test/files/pos/switchUnbox.scala
@@ -0,0 +1,11 @@
+// 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")
+ }
+}