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

object Test extends App {
  reify {
    println(new {def x = 2; def y = x * x}.y)
  }.eval
}