summaryrefslogblamecommitdiff
path: root/test/files/run/reify_getter.scala
blob: 33f36888a75c9bb8df91f74af07c9e6fd759d57a (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{
    class C {
      val x = 2
    }

    new C().x
  };

  val reporter = new ConsoleReporter(new Settings)
  val toolbox = new ToolBox(reporter)
  val evaluated = toolbox.runExpr(code.tree)
  println("evaluated = " + evaluated)
}