aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t3452h.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t3452h.scala')
-rw-r--r--tests/pending/run/t3452h.scala8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/pending/run/t3452h.scala b/tests/pending/run/t3452h.scala
deleted file mode 100644
index c06ae0a0b..000000000
--- a/tests/pending/run/t3452h.scala
+++ /dev/null
@@ -1,8 +0,0 @@
-class Mix___eFoo_I_wBar__f extends Foo_I_ with Bar__f { f; }
-trait T
-abstract class Foo_I_ { class I extends T ; def f: I ; f; }
-trait Bar__f { type I>:Null<:T; def f: I = {null}; f; def gobble: I = {null}}
-
-object Test extends dotty.runtime.LegacyApp {
- new Mix___eFoo_I_wBar__f
-}