From b094defe6162232d8be29ae0eb44ab6742c11f9b Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Wed, 15 Sep 2010 23:13:53 +0000 Subject: positioning fix for infix expressions: report e... 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. --- test/files/neg/infix-op-positions.scala | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 test/files/neg/infix-op-positions.scala (limited to 'test/files/neg/infix-op-positions.scala') diff --git a/test/files/neg/infix-op-positions.scala b/test/files/neg/infix-op-positions.scala new file mode 100644 index 0000000000..16351b0ab3 --- /dev/null +++ b/test/files/neg/infix-op-positions.scala @@ -0,0 +1,4 @@ +object Test { + Option(1) -! "test" // left associative operator + "test" -!: Option(1) // right associative operators +} -- cgit v1.2.3