summaryrefslogblamecommitdiff
path: root/test/files/run/t5276_2b.scala
blob: 63904b2898deadee45a145fd47e38903f7655e62 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12





                                     





                             



                                                  
                            
 
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 {
      implicit lazy val x = 2
      def y = implicitly[Int]
    }

    println(new C().y)
  };

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