aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/neg-with-implicits/t5903d/Macros_1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/neg-with-implicits/t5903d/Macros_1.scala')
-rw-r--r--tests/untried/neg-with-implicits/t5903d/Macros_1.scala23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/untried/neg-with-implicits/t5903d/Macros_1.scala b/tests/untried/neg-with-implicits/t5903d/Macros_1.scala
new file mode 100644
index 000000000..3500c2a78
--- /dev/null
+++ b/tests/untried/neg-with-implicits/t5903d/Macros_1.scala
@@ -0,0 +1,23 @@
+import scala.reflect.macros.blackbox.Context
+import language.experimental.macros
+
+object Interpolation {
+ implicit class TestInterpolation(c: StringContext) {
+ object t {
+ def unapply(x: Int): Any = macro Macros.unapplyImpl
+ }
+ }
+}
+
+object Macros {
+ def unapplyImpl(c: Context)(x: c.Tree) = {
+ import c.universe._
+ q"""
+ class Match(x: Int) {
+ def isEmpty = false
+ def get = x
+ }
+ new { def unapply(x: Int) = new Match(x) }.unapply($x)
+ """
+ }
+}