summaryrefslogtreecommitdiff
path: root/test/pending/run/t5271_3.scala
blob: 65a03ae323697a20c017b4a08a2ac4bc35e4e503 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import scala.reflect.mirror._

object Test extends App {
  reify {
    object C { def qwe = 4 }
    case class C(foo: Int, bar: Int)
    val c = C(2, 2)
    println(c.foo * c.bar == C.qwe)
  }.eval
}