summaryrefslogtreecommitdiff
path: root/test/files/neg/overload-msg.check
Commit message (Collapse)AuthorAgeFilesLines
* positioning fix for infix expressions: report e...Paul Phillips2010-09-151-1/+1
| | | | | | | | | | | | positioning fix for infix expressions: report error at the operator instead of at the receiver of a binop In general use the operator position as the Select position's point instead of the left or right expression. Position.union always uses the receiver's point as point of the result, so swapping fixes that. See http://www.scala-lang.org/node/6912 for the report.
* Created TypeDiagnostics trait and have begun op...Paul Phillips2010-04-271-0/+13
Created TypeDiagnostics trait and have begun opportunistically moving code into it. Along the way, some improvements to error messages. The situation described in ticket #2206 has always had an applicable error message, but it wasn't making it out to the user. More kinds of ambiguity are disambiguated, see the test cases. And overload errors are printed with some formatting so one has some hope of parsing. Review by odersky.