summaryrefslogtreecommitdiff
path: root/test/files/run/reify_inheritance.scala
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2011-12-05 00:05:57 +0100
committerEugene Burmako <xeno.by@gmail.com>2011-12-05 00:05:57 +0100
commit7193d21a9be25bf8a705492493971f3267687098 (patch)
tree0f03cd92cc5898cb7c809019e475005f3bc3603a /test/files/run/reify_inheritance.scala
parent3e9e4ecf360e6eda5c26f798abfcb9bb882cf772 (diff)
downloadscala-7193d21a9be25bf8a705492493971f3267687098.tar.gz
scala-7193d21a9be25bf8a705492493971f3267687098.tar.bz2
scala-7193d21a9be25bf8a705492493971f3267687098.zip
Test pack for various flavors of reflection.
Diffstat (limited to 'test/files/run/reify_inheritance.scala')
-rw-r--r--test/files/run/reify_inheritance.scala23
1 files changed, 23 insertions, 0 deletions
diff --git a/test/files/run/reify_inheritance.scala b/test/files/run/reify_inheritance.scala
new file mode 100644
index 0000000000..2a1b5f764f
--- /dev/null
+++ b/test/files/run/reify_inheritance.scala
@@ -0,0 +1,23 @@
+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 {
+ def x = 2
+ def y = x * x
+ }
+
+ class D extends C {
+ override def x = 3
+ }
+
+ println(new D().y * new C().x)
+ };
+
+ val reporter = new ConsoleReporter(new Settings)
+ val toolbox = new ToolBox(reporter)
+ val ttree = toolbox.typeCheck(code.tree)
+ toolbox.runExpr(ttree)
+}