aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/reify_classfileann_b.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/reify_classfileann_b.scala')
-rw-r--r--tests/pending/run/reify_classfileann_b.scala26
1 files changed, 0 insertions, 26 deletions
diff --git a/tests/pending/run/reify_classfileann_b.scala b/tests/pending/run/reify_classfileann_b.scala
deleted file mode 100644
index 920d671f9..000000000
--- a/tests/pending/run/reify_classfileann_b.scala
+++ /dev/null
@@ -1,26 +0,0 @@
-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)
-}