aboutsummaryrefslogtreecommitdiffstats
path: root/tests/new
diff options
context:
space:
mode:
Diffstat (limited to 'tests/new')
-rw-r--r--tests/new/NegativeSourceLocation.java9
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/new/NegativeSourceLocation.java b/tests/new/NegativeSourceLocation.java
index aa1801459..89e71783c 100644
--- a/tests/new/NegativeSourceLocation.java
+++ b/tests/new/NegativeSourceLocation.java
@@ -262,10 +262,11 @@ aspect Aspect {
if (0 > i) {
Signal.failed(context + " line<0: " + i);
}
- i = sl.getColumn();
- if (0 > i) {
- Signal.failed(context + " column<0: " + i);
- }
+ // 1.1 doesn't provide column info
+// i = sl.getColumn();
+// if (0 > i) {
+// Signal.failed(context + " column<0: " + i);
+// }
}
}
} // Aspect