aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/reify_inheritance.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/reify_inheritance.scala')
-rw-r--r--tests/pending/run/reify_inheritance.scala17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/pending/run/reify_inheritance.scala b/tests/pending/run/reify_inheritance.scala
deleted file mode 100644
index f4fb49edc..000000000
--- a/tests/pending/run/reify_inheritance.scala
+++ /dev/null
@@ -1,17 +0,0 @@
-import scala.reflect.runtime.universe._
-import scala.tools.reflect.Eval
-
-object Test extends dotty.runtime.LegacyApp {
- reify {
- class C {
- def x = 2
- def y = x * x
- }
-
- class D extends C {
- override def x = 3
- }
-
- println(new D().y * new C().x)
- }.eval
-}