summaryrefslogtreecommitdiff
path: root/test/files/neg/t5830.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/t5830.scala')
-rw-r--r--test/files/neg/t5830.scala9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/files/neg/t5830.scala b/test/files/neg/t5830.scala
new file mode 100644
index 0000000000..c2df3dec8b
--- /dev/null
+++ b/test/files/neg/t5830.scala
@@ -0,0 +1,9 @@
+import scala.annotation.switch
+
+class Test {
+ def unreachable(ch: Char) = (ch: @switch) match {
+ case 'a' => println("b") // ok
+ case 'a' => println("b") // unreachable
+ case 'c' =>
+ }
+} \ No newline at end of file