summaryrefslogtreecommitdiff
path: root/test/files/run/t5225_2.scala
blob: cf0f23a5c842c9cb843f022c6056ff55dbf91de8 (plain) (blame)
1
2
3
4
5
6
import scala.reflect.runtime.universe._

object Test extends App {
  val tree = reify{def foo(@annotation.elidable(0) x: Int) = ""}.tree
  println(tree.toString)
}