/** @testcase PR#885 call source locations within expression */
public class SourceLocationWithinExpr {
public static void main (String[] args) {
- new // 9*
- C() // 10
+ new // 9
+ C() // 10*
. // 11
getD() // 12*
. // 13
private static final String SEP = " - ";
static {
// using qualifying expr?
- Tester.expectEvent("C()" + SEP + "9");
+ Tester.expectEvent("C()" + SEP + "10");
Tester.expectEvent("getD()" + SEP + "12");
Tester.expectEvent("getE()" + SEP + "14");
Tester.expectEvent("getF()" + SEP + "16");