aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/macro-reflective-mamd-normal-mi/Macros_Test_2.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/macro-reflective-mamd-normal-mi/Macros_Test_2.scala')
-rw-r--r--tests/pending/run/macro-reflective-mamd-normal-mi/Macros_Test_2.scala20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/pending/run/macro-reflective-mamd-normal-mi/Macros_Test_2.scala b/tests/pending/run/macro-reflective-mamd-normal-mi/Macros_Test_2.scala
deleted file mode 100644
index 0b867e787..000000000
--- a/tests/pending/run/macro-reflective-mamd-normal-mi/Macros_Test_2.scala
+++ /dev/null
@@ -1,20 +0,0 @@
-//object Macros {
-// def foo(x: Int) = macro Impls.foo
-//}
-
-object Test extends dotty.runtime.LegacyApp {
- import scala.reflect.runtime.universe._
- import scala.reflect.runtime.universe.Flag._
- import scala.reflect.runtime.{currentMirror => cm}
- import scala.tools.reflect.ToolBox
-
- val macrobody = Select(Ident(TermName("Impls")), TermName("foo"))
- val macroparam = ValDef(NoMods, TermName("x"), TypeTree(definitions.IntClass.toType), EmptyTree)
- val macrodef = DefDef(Modifiers(MACRO), TermName("foo"), Nil, List(List(macroparam)), Ident(TypeName("Int")), macrobody)
- val modulector = DefDef(NoMods, termNames.CONSTRUCTOR, Nil, List(List()), TypeTree(), Block(List(Apply(Select(Super(This(typeNames.EMPTY), typeNames.EMPTY), termNames.CONSTRUCTOR), List())), Literal(Constant(()))))
- val module = ModuleDef(NoMods, TermName("Macros"), Template(Nil, noSelfType, List(modulector, macrodef)))
- val macroapp = Apply(Select(Ident(TermName("Macros")), TermName("foo")), List(Literal(Constant(42))))
- val tree = Block(List(macrodef, module), macroapp)
- val toolbox = cm.mkToolBox(options = "-language:experimental.macros")
- println(toolbox.eval(tree))
-}