aboutsummaryrefslogblamecommitdiff
path: root/tests/disabled/macro/run/reify_classfileann_a.scala
blob: 74546df37159da0081d7c7b45093fbe7f7ecab63 (plain) (tree)
1
2
3
4
5
6
7
8






                                                                                                             
                                             












                                                                         
 
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{
    @ann(bar="1", quux=Array("2", "3"), baz = new ann(bar = "4")) class C
  }.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)
}