aboutsummaryrefslogtreecommitdiff
path: root/tests/disabled/macro/run/reify_copypaste2.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/disabled/macro/run/reify_copypaste2.scala')
-rw-r--r--tests/disabled/macro/run/reify_copypaste2.scala10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/disabled/macro/run/reify_copypaste2.scala b/tests/disabled/macro/run/reify_copypaste2.scala
new file mode 100644
index 000000000..2f9bea1fe
--- /dev/null
+++ b/tests/disabled/macro/run/reify_copypaste2.scala
@@ -0,0 +1,10 @@
+import scala.reflect.runtime.universe._
+import scala.reflect.runtime.{universe => ru}
+import scala.reflect.runtime.{currentMirror => cm}
+import scala.tools.reflect.ToolBox
+
+object Test extends dotty.runtime.LegacyApp {
+ val x = 2
+ val outer = reify{reify{x}}
+ println(outer.tree)
+}