summaryrefslogtreecommitdiff
path: root/test/files/neg/t8024.check
Commit message (Collapse)AuthorAgeFilesLines
* SI-8024 Improve user-level toString of package objectsJason Zaugg2013-12-121-1/+1
| | | | | | | | | We were outputing a the unattractive `package package`; now we opt for `package object pack`. Under `-Ydebug`, we still go to the "accurate" mode of the old `toString` implementation, which differentiates package objects vs package object classes.
* SI-8024 Fix inaccurate message on overloaded ambiguous identJason Zaugg2013-12-121-0/+6
`Symbol#owner` of an overloaded symbol doesn't necessarily correspond to the owner of any of the alternatives, and as such it shouldn't be used in error message. neg/t8024.scala actually represents a progression since 2.10.3; the ambiguity was not reported. I bisected the change to https://github.com/scala/scala/pull/1554.