aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t5224.scala
blob: d0cd9a455e4b561beef5a9191ce3fa144aa4bd73 (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 dotty.runtime.LegacyApp {
  val tree = reify{@Foo(bar = "qwe") class C}.tree
  println(tree.toString)
}