aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t5270.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t5270.scala')
-rw-r--r--tests/pending/run/t5270.scala20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/pending/run/t5270.scala b/tests/pending/run/t5270.scala
deleted file mode 100644
index 03ba765fd..000000000
--- a/tests/pending/run/t5270.scala
+++ /dev/null
@@ -1,20 +0,0 @@
-import scala.reflect.runtime.universe._
-import scala.tools.reflect.Eval
-
-object Test extends dotty.runtime.LegacyApp {
- reify {
- class Y {
- def y = 100
- }
-
- trait Z { this: Y =>
- val z = 2 * y
- }
-
- class X extends Y with Z {
- def println() = Predef.println(z)
- }
-
- new X().println()
- }.eval
-}