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

                         
                                                  

                        
import scala.reflect.mirror._

class Foo(bar: String) extends annotation.ClassfileAnnotation

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