summaryrefslogblamecommitdiff
path: root/test/files/run/t5224.scala
blob: 600a4200bd930257044bef7cc3a21004f98973e0 (plain) (tree)
1
2
3
4
5
6
7
8
                                       
 
                                                             

                         
                                                  

                        
import scala.reflect.runtime.universe._

class Foo(bar: String) extends annotation.ClassfileAnnotation

object Test extends App {
  val tree = reify{@Foo(bar = "qwe") class C}.tree
  println(tree.toString)
}