aboutsummaryrefslogtreecommitdiff
path: root/tests/repl/innerClasses.check
Commit message (Collapse)AuthorAgeFilesLines
* Fix #1806: Define outer accessors at the right phaseMartin Odersky2016-12-161-0/+5
Some outer accessors were defined at phase explicitOuter, but were entered into the scope of their enclosing class only at phase explicitOuter + 1. This turned them to stale symbols when trying to access them at a later run, because at their initially valid phase they were not found as members of their owner.