aboutsummaryrefslogtreecommitdiff
path: root/tests/pending
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2015-06-26 17:39:51 +0200
committerMartin Odersky <odersky@gmail.com>2015-06-26 18:17:56 +0200
commitb50f9abef672221a4706f0819eca2cfc1068751c (patch)
tree4c0efb035ed19d2e52ed6c03f39835058a2e9e54 /tests/pending
parentef0184826b784fda9e2e1ef9aab31cab692cf3d2 (diff)
downloaddotty-b50f9abef672221a4706f0819eca2cfc1068751c.tar.gz
dotty-b50f9abef672221a4706f0819eca2cfc1068751c.tar.bz2
dotty-b50f9abef672221a4706f0819eca2cfc1068751c.zip
Drop Module flag from lifted symbols.
Reason: A lifted module is no longer a module (i.e. singleton object) in the scope to which it is lifted. Fixes #689.
Diffstat (limited to 'tests/pending')
-rw-r--r--tests/pending/run/t8002.scala19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/pending/run/t8002.scala b/tests/pending/run/t8002.scala
deleted file mode 100644
index c27e83a46..000000000
--- a/tests/pending/run/t8002.scala
+++ /dev/null
@@ -1,19 +0,0 @@
-object Test extends dotty.runtime.LegacyApp {
- val a: Any = {
- class A private () { private def x = 0; A.y };
- object A {
- def a = new A().x
- private def y = 0
- }
- A.a
- }
- def b: Any = {
- object A {
- def a = new A().x
- private def y = 0
- }
- class A private () { private def x = 0; A.y };
- A.a
- }
- b
-}