summaryrefslogtreecommitdiff
path: root/test/files/pos/t8044.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t8044.scala')
-rw-r--r--test/files/pos/t8044.scala7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/files/pos/t8044.scala b/test/files/pos/t8044.scala
new file mode 100644
index 0000000000..8259f06a8a
--- /dev/null
+++ b/test/files/pos/t8044.scala
@@ -0,0 +1,7 @@
+
+trait T {
+ def f = 42 match { case `x` @ _ => x }
+ def g = 42 match { case `type` @ _ => `type` }
+ def h = 42 match { case `type` : Int => `type` }
+ def i = (null: Any) match { case _: Int | _: String => 17 }
+}