summaryrefslogtreecommitdiff
path: root/test/files/pos/t9074.scala
Commit message (Collapse)AuthorAgeFilesLines
* SI-9074 Fix generic substitution with package objects, overloadingJason Zaugg2015-03-241-0/+24
Takes a leaf out of dotty's book [1] and makes `asSeenFrom` transparently change the prefix from the package class to the package object when needed. This fixes generic subsitution during overload resolution, as reported in SI-9074. This subsumes the former fix for SI-6225, which is removed here. [1] https://github.com/lampepfl/dotty/pull/282