summaryrefslogblamecommitdiff
path: root/test/files/run/t5276_1b.scala
blob: 31582201fb1c8ecd0ec21e2308003c310f082270 (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
    implicitly[Int]
  };

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