summaryrefslogtreecommitdiff
path: root/test/files/pos/switch-small.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/switch-small.scala')
-rw-r--r--test/files/pos/switch-small.scala8
1 files changed, 0 insertions, 8 deletions
diff --git a/test/files/pos/switch-small.scala b/test/files/pos/switch-small.scala
deleted file mode 100644
index 9de9ca028e..0000000000
--- a/test/files/pos/switch-small.scala
+++ /dev/null
@@ -1,8 +0,0 @@
-import annotation._
-
-object Test {
- def f(x: Int) = (x: @switch) match {
- case 1 => 1
- case _ => 2
- }
-}