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










                                                  
                            
 
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{
    object C
  };

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