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






                                     
              

    
                                                  



                                          
 
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{
    def x = 2
    println(x)
  };

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