summaryrefslogtreecommitdiff
path: root/test/pending/run/t5269.scala
blob: a30509f3fe75c86644c74acba40472a6e6fae2c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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)
  val ttree = toolbox.typeCheck(code.tree)
  toolbox.runExpr(ttree)
}