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

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