aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core
diff options
context:
space:
mode:
authorliu fengyun <liu@fengy.me>2016-11-17 10:17:45 +0100
committerliu fengyun <liu@fengy.me>2016-11-17 10:17:45 +0100
commite8a09cd0e21d4d51fb877ddd4d2b0c409ff906b9 (patch)
treed11a67adf5d2f73b37a03e543278541c014dac77 /src/dotty/tools/dotc/core
parent51be882adb6f055c1cf924167f8fab7edb82d721 (diff)
downloaddotty-e8a09cd0e21d4d51fb877ddd4d2b0c409ff906b9.tar.gz
dotty-e8a09cd0e21d4d51fb877ddd4d2b0c409ff906b9.tar.bz2
dotty-e8a09cd0e21d4d51fb877ddd4d2b0c409ff906b9.zip
don't enter package to owner's scope
Diffstat (limited to 'src/dotty/tools/dotc/core')
-rw-r--r--src/dotty/tools/dotc/core/Symbols.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotty/tools/dotc/core/Symbols.scala b/src/dotty/tools/dotc/core/Symbols.scala
index 38b2c8bd6..b5bd196d2 100644
--- a/src/dotty/tools/dotc/core/Symbols.scala
+++ b/src/dotty/tools/dotc/core/Symbols.scala
@@ -428,7 +428,7 @@ object Symbols {
final def entered(implicit ctx: Context): this.type = {
assert(this.owner.isClass, s"symbol ($this) entered the scope of non-class owner ${this.owner}") // !!! DEBUG
this.owner.asClass.enter(this)
- if (this is Module) this.owner.asClass.enter(this.moduleClass)
+ if (this.is(Module, butNot = Package)) this.owner.asClass.enter(this.moduleClass)
this
}