summaryrefslogblamecommitdiff
path: root/test/files/run/reify_classfileann_b.scala
blob: a37f20e72ed7de951992741b34450012b5690f57 (plain) (tree)
1
2
3
4
5
6
7
                             
 
                                                                                                             


                         
                   







                                                                        





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

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