summaryrefslogblamecommitdiff
path: root/test/files/run/t5271_3.scala
blob: bfa116c691117aebc147bc070cfc3a502cdc2e2e (plain) (tree)
1
2
3
4
5
6
7
8
9





                                     
                            

                                    
                                   






                                                  
import scala.tools.nsc.reporters._
import scala.tools.nsc.Settings
import reflect.runtime.Mirror.ToolBox

object Test extends App {
  val code = scala.reflect.Code.lift{
    object C { def qwe = 4 }
    case class C(foo: Int, bar: Int)
    val c = C(2, 2)
    println(c.foo * c.bar == C.qwe)
  };

  val reporter = new ConsoleReporter(new Settings)
  val toolbox = new ToolBox(reporter)
  val ttree = toolbox.typeCheck(code.tree)
  toolbox.runExpr(ttree)
}