summaryrefslogblamecommitdiff
path: root/test/files/run/t5269.scala
blob: cab99f17e6938446941011d9b20d65fff0647b76 (plain) (tree)


















                                                  
                            
 
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{
    trait Z {
      val z = 2
    }

    class X extends Z {
      def println() = Predef.println(z)
    }

    new X().println()
  };

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