summaryrefslogtreecommitdiff
path: root/test/files/neg/switch.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/switch.scala')
-rw-r--r--test/files/neg/switch.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/neg/switch.scala b/test/files/neg/switch.scala
index a3dfd869d6..198583fe41 100644
--- a/test/files/neg/switch.scala
+++ b/test/files/neg/switch.scala
@@ -24,8 +24,8 @@ object Main {
case _ => false
}
- // has a guard
- def fail1(c: Char) = (c: @switch) match {
+ // has a guard, but since SI-5830 that's ok
+ def succ_guard(c: Char) = (c: @switch) match {
case 'A' | 'B' | 'C' => true
case x if x == 'A' => true
case _ => false