summaryrefslogtreecommitdiff
path: root/test/files/run/t5334_2.scala
blob: 26f07784006cc15b6f0caea241435483d4520612 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 { override def toString() = "C" }
    List((new C, new C))
  };

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