summaryrefslogtreecommitdiff
path: root/test/files/run/t5258a.scala
blob: deabb8310f413ebbea28e0a443ded26d75ee95ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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{
    println(classOf[Int])
  };

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