summaryrefslogtreecommitdiff
path: root/test/files/pos/sd248
Commit message (Collapse)AuthorAgeFilesLines
* Ensure companionClass returns a class, not a type aliasLukas Rytz2016-10-263-0/+10
This fixes scala/scala-dev#248, where a type alias reached the backend through this method. This is very similar to the fix for SI-5031, which changed it only in ModuleSymbol, but not in Symbol. The override in ModuleSymbol is actually unnecessary (it's identical), so it's removed in this commit. It was added for unclear reasons in 296b706.