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



                                  
                                                    

                        
import scala.reflect.mirror._

class Foo extends StaticAnnotation

object Test extends App {
  val tree = reify{(5: @Foo).asInstanceOf[Int]}.tree
  println(tree.toString)
}