summaryrefslogtreecommitdiff
path: root/test/files/neg/t9398/match.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/t9398/match.scala')
-rw-r--r--test/files/neg/t9398/match.scala6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/files/neg/t9398/match.scala b/test/files/neg/t9398/match.scala
new file mode 100644
index 0000000000..e110c6a96a
--- /dev/null
+++ b/test/files/neg/t9398/match.scala
@@ -0,0 +1,6 @@
+class Test {
+ // Should warn that CC(B2) isn't matched
+ def test(c: CC): Unit = c match {
+ case CC(B) => ()
+ }
+}