summaryrefslogblamecommitdiff
path: root/test/files/run/t5334_2.scala
blob: 775a05aaf741613c185fae7de94323708d664fc4 (plain) (tree)
1
2
3
4
5
6
7





                                     
                                             




                                                  
                                     
 
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)
  println(toolbox.runExpr(code.tree))
}