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

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