summaryrefslogtreecommitdiff
path: root/test/files/run/bug1093.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/bug1093.scala')
-rw-r--r--test/files/run/bug1093.scala9
1 files changed, 0 insertions, 9 deletions
diff --git a/test/files/run/bug1093.scala b/test/files/run/bug1093.scala
deleted file mode 100644
index 4cc6181e81..0000000000
--- a/test/files/run/bug1093.scala
+++ /dev/null
@@ -1,9 +0,0 @@
-// contribution bug #460
-
-object Test extends Application {
- val x = Some(3) match {
- case Some(1 | 2) => 1
- case Some(3) => 2
- }
- println(x)
-}