summaryrefslogtreecommitdiff
path: root/test/pending/run/t5271_1.scala
blob: afbd8fe465177b4aaa12b664e2b795199b36ffab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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{
    case class C(foo: Int, bar: Int)
  };

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