summaryrefslogtreecommitdiff
path: root/test/files/run/reify_classfileann_a.scala
blob: 9aec69b4a3cfb45602ac81a9aa88b01c5a2e9c55 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import scala.reflect.mirror._

class ann(bar: String, quux: Array[String] = Array(), baz: ann = null) extends annotation.ClassfileAnnotation

object Test extends App {
  // 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 = mkToolBox()
  val ttree = toolbox.typeCheck(tree)
  println(ttree.toString)

  // test 3: import and compile
  toolbox.runExpr(tree)
}