aboutsummaryrefslogtreecommitdiff
path: root/tests/disabled/macro/run/t7871/Macros_1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/disabled/macro/run/t7871/Macros_1.scala')
-rw-r--r--tests/disabled/macro/run/t7871/Macros_1.scala27
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/disabled/macro/run/t7871/Macros_1.scala b/tests/disabled/macro/run/t7871/Macros_1.scala
new file mode 100644
index 000000000..dca250812
--- /dev/null
+++ b/tests/disabled/macro/run/t7871/Macros_1.scala
@@ -0,0 +1,27 @@
+import scala.reflect.macros.whitebox.Context
+import language.experimental.macros
+
+trait Tree
+case object SomeTree extends Tree
+
+object NewQuasiquotes {
+ implicit class QuasiquoteInterpolation(c: StringContext) {
+ object nq {
+ def unapply(t: Tree): Any = macro QuasiquoteMacros.unapplyImpl
+ }
+ }
+}
+
+object QuasiquoteMacros {
+ def unapplyImpl(c: Context)(t: c.Tree) = {
+ import c.universe._
+ q"""
+ new {
+ def unapply(t: Tree) = t match {
+ case SomeTree => Some((SomeTree, SomeTree))
+ case _ => None
+ }
+ }.unapply($t)
+ """
+ }
+}