aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/neg/t8158/Test_2.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/neg/t8158/Test_2.scala')
-rw-r--r--tests/untried/neg/t8158/Test_2.scala14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/untried/neg/t8158/Test_2.scala b/tests/untried/neg/t8158/Test_2.scala
new file mode 100644
index 000000000..f5ac6616b
--- /dev/null
+++ b/tests/untried/neg/t8158/Test_2.scala
@@ -0,0 +1,14 @@
+import scala.language.experimental.macros
+
+object X {
+ def unapply(any: Any): Any = macro Max.impl
+}
+
+class BugTest {
+ def bug(): Unit = {
+ "any" match {
+ case X() =>
+ case _ => ???
+ }
+ }
+} \ No newline at end of file