aboutsummaryrefslogtreecommitdiff
path: root/tests/disabled/macro/run/reify_ann4.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/disabled/macro/run/reify_ann4.scala')
-rw-r--r--tests/disabled/macro/run/reify_ann4.scala26
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/disabled/macro/run/reify_ann4.scala b/tests/disabled/macro/run/reify_ann4.scala
new file mode 100644
index 000000000..074ceb815
--- /dev/null
+++ b/tests/disabled/macro/run/reify_ann4.scala
@@ -0,0 +1,26 @@
+import scala.reflect.runtime.universe._
+import scala.reflect.runtime.{universe => ru}
+import scala.reflect.runtime.{currentMirror => cm}
+import scala.tools.reflect.ToolBox
+import scala.annotation._
+import scala.annotation.meta._
+
+object Test extends dotty.runtime.LegacyApp {
+ // test 1: reify
+ val tree = reify{
+ class D extends StaticAnnotation
+ class C
+ val c1 = new C @D
+ //val c2 = (new C) @D // illegal syntax
+ //val c3 = c1 @D // illegal syntax
+ }.tree
+ println(tree.toString)
+
+ // test 2: import and typecheck
+ val toolbox = cm.mkToolBox()
+ val ttree = toolbox.typecheck(tree)
+ println(ttree.toString)
+
+ // test 3: import and compile
+ toolbox.eval(tree)
+}