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

                         
                                                    

                        
import scala.reflect.mirror._

class Foo extends annotation.StaticAnnotation

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