aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t5224.scala
blob: 5e92d4e04b38d1fdc4d29a04045b2e7111b9240d (plain) (blame)
1
2
3
4
5
6
7
8
import scala.reflect.runtime.universe._

class Foo(bar: String) extends annotation.ClassfileAnnotation

object Test extends App {
  val tree = reify{@Foo(bar = "qwe") class C}.tree
  println(tree.toString)
}