aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t1591.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t1591.scala')
-rw-r--r--tests/pending/run/t1591.scala14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/pending/run/t1591.scala b/tests/pending/run/t1591.scala
deleted file mode 100644
index 78efb695a..000000000
--- a/tests/pending/run/t1591.scala
+++ /dev/null
@@ -1,14 +0,0 @@
-abstract class A {
-
- lazy val lazyBar = bar
-
- object bar {
- val foo = 12
- }
-
-}
-
-object Test extends dotty.runtime.LegacyApp {
- val a = new A{}
- println(a.lazyBar.foo)
-}