aboutsummaryrefslogtreecommitdiff
path: root/tests/patmat/t4333.scala.ignore
diff options
context:
space:
mode:
Diffstat (limited to 'tests/patmat/t4333.scala.ignore')
-rw-r--r--tests/patmat/t4333.scala.ignore7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/patmat/t4333.scala.ignore b/tests/patmat/t4333.scala.ignore
new file mode 100644
index 000000000..07d105c74
--- /dev/null
+++ b/tests/patmat/t4333.scala.ignore
@@ -0,0 +1,7 @@
+object Enum extends Enumeration { val A, B, C = Value }
+
+object Test {
+ def foo(v : Enum.Value) = v match {
+ case Enum.B => println("B")
+ }
+}