aboutsummaryrefslogtreecommitdiff
path: root/tests/disabled/macro/run/t5903c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/disabled/macro/run/t5903c')
-rw-r--r--tests/disabled/macro/run/t5903c/Macros_1.scala23
-rw-r--r--tests/disabled/macro/run/t5903c/Test_2.scala6
2 files changed, 29 insertions, 0 deletions
diff --git a/tests/disabled/macro/run/t5903c/Macros_1.scala b/tests/disabled/macro/run/t5903c/Macros_1.scala
new file mode 100644
index 000000000..34fe1d880
--- /dev/null
+++ b/tests/disabled/macro/run/t5903c/Macros_1.scala
@@ -0,0 +1,23 @@
+import scala.reflect.macros.whitebox.Context
+import language.experimental.macros
+
+object Interpolation {
+ implicit class TestInterpolation(c: StringContext) {
+ object t {
+ def unapply[T](x: T): Any = macro Macros.unapplyImpl[T]
+ }
+ }
+}
+
+object Macros {
+ def unapplyImpl[T: c.WeakTypeTag](c: Context)(x: c.Tree) = {
+ import c.universe._
+ q"""
+ new {
+ def isEmpty = false
+ def get = 2
+ def unapply(x: Int) = this
+ }.unapply($x)
+ """
+ }
+}
diff --git a/tests/disabled/macro/run/t5903c/Test_2.scala b/tests/disabled/macro/run/t5903c/Test_2.scala
new file mode 100644
index 000000000..23a92225d
--- /dev/null
+++ b/tests/disabled/macro/run/t5903c/Test_2.scala
@@ -0,0 +1,6 @@
+object Test extends dotty.runtime.LegacyApp {
+ import Interpolation._
+ 2 match {
+ case t"$x" => println(x)
+ }
+}