summaryrefslogtreecommitdiff
path: root/test/files/run/t5277_2.scala
blob: 91ed55122ac8537e340d7a4dc5cb78e00fb26dcd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 p(implicit i: Int) = print(i)
    implicit val v = 2

    println(p)
    println(p(1))
  };

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