aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/i1990.scala
Commit message (Collapse)AuthorAgeFilesLines
* Fix #1990: Handle case where inlining changes class of outerMartin Odersky2017-02-181-0/+12
The new situation in the test was that outer of the inlined method was `A` but it's as seen from type is a subtype `B`. We need two fixes: - Ignore outerSelects in TreeChecker. These are treated as having fixed symbols. - Adapt the outer-path logic to deal with code that's moved to another context.