summaryrefslogtreecommitdiff
path: root/test/files/neg/t7171b.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/t7171b.scala')
-rw-r--r--test/files/neg/t7171b.scala15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/files/neg/t7171b.scala b/test/files/neg/t7171b.scala
new file mode 100644
index 0000000000..53c7787f8b
--- /dev/null
+++ b/test/files/neg/t7171b.scala
@@ -0,0 +1,15 @@
+trait T {
+ final case class A()
+}
+
+final class U extends T {
+ // this match should also not be deemed impossible
+ def foo(a: U#A) = a match {
+ case _: A => true; case _ => false
+ }
+
+ // this match should also not be deemed impossible
+ def bar(a: T#A) = a match {
+ case _: A => true; case _ => false
+ }
+}