summaryrefslogtreecommitdiff
path: root/test/files/neg/infix-op-positions.scala
Commit message (Collapse)AuthorAgeFilesLines
* positioning fix for infix expressions: report e...Paul Phillips2010-09-151-0/+4
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.