aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/i536.scala
Commit message (Collapse)AuthorAgeFilesLines
* Fix #536 - only load member classes of classes that are currently compiled.Martin Odersky2015-05-071-0/+3
It seems wasteful to load the member classes even of classes that are not currently compiled. It also makes us vulnerable to any misinterpretation of Java file formats. In th particular case of #536, we parsed a class an anonymous Collection$1 which was referring to the type parameter of its enclosing class, but was not diagnosed as an inner class of the enclosing class.