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





                                     
                           
                            



                                                  
                            
 
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{
    implicit lazy val x = 2
    println(implicitly[Int])
  };

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