aboutsummaryrefslogtreecommitdiff
path: root/tests/disabled/macro/run/reify_classfileann_b.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/disabled/macro/run/reify_classfileann_b.scala')
-rw-r--r--tests/disabled/macro/run/reify_classfileann_b.scala26
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/disabled/macro/run/reify_classfileann_b.scala b/tests/disabled/macro/run/reify_classfileann_b.scala
new file mode 100644
index 000000000..920d671f9
--- /dev/null
+++ b/tests/disabled/macro/run/reify_classfileann_b.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
+
+class ann(bar: String, quux: Array[String] = Array(), baz: ann = null) extends annotation.ClassfileAnnotation
+
+object Test extends dotty.runtime.LegacyApp {
+ // test 1: reify
+ val tree = reify{
+ class C {
+ def x: Int = {
+ 2: @ann(bar="1", quux=Array("2", "3"), baz = new ann(bar = "4"))
+ }
+ }
+ }.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)
+}