FULL PRODUCT VERSION :
java version "1.6.0_01"
Java(TM) SE Runtime Environment (build 1.6.0_01-b06)
Java HotSpot(TM) Client VM (build 1.6.0_01-b06, mixed mode, sharing)
ADDITIONAL OS VERSION INFORMATION :
Windows XP
A DESCRIPTION OF THE PROBLEM :
No line number is indicated when a compile error occurs in an enum constant. See the test case below, where the enum constructor declares a checked exception, and see that the compiler output does not say which line (or even which source file) this error occurs in. Obviously that makes it hard to track down the error. :)
Note that I think this may well be caused by the issue noted in bug 6472751.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Compile the example code below.
javac Test.java
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
I'd expect an error with a line number, as was given in JDK 5.0's compiler:
Test.java:3: unreported exception java.lang.Exception; must be caught or declared to be thrown
FOO;
^
1 error
ACTUAL -
error: unreported exception java.lang.Exception; must be caught or declared to be thrown
1 error
ERROR MESSAGES/STACK TRACES THAT OCCUR :
error: unreported exception java.lang.Exception; must be caught or declared to be thrown
1 error
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
public enum Test {
FOO;
Test() throws Exception {}
}
---------- END SOURCE ----------
CUSTOMER SUBMITTED WORKAROUND :
Use JDK 5.0 to find the compile error, if possible, and then fix the compile error of course.
java version "1.6.0_01"
Java(TM) SE Runtime Environment (build 1.6.0_01-b06)
Java HotSpot(TM) Client VM (build 1.6.0_01-b06, mixed mode, sharing)
ADDITIONAL OS VERSION INFORMATION :
Windows XP
A DESCRIPTION OF THE PROBLEM :
No line number is indicated when a compile error occurs in an enum constant. See the test case below, where the enum constructor declares a checked exception, and see that the compiler output does not say which line (or even which source file) this error occurs in. Obviously that makes it hard to track down the error. :)
Note that I think this may well be caused by the issue noted in bug 6472751.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Compile the example code below.
javac Test.java
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
I'd expect an error with a line number, as was given in JDK 5.0's compiler:
Test.java:3: unreported exception java.lang.Exception; must be caught or declared to be thrown
FOO;
^
1 error
ACTUAL -
error: unreported exception java.lang.Exception; must be caught or declared to be thrown
1 error
ERROR MESSAGES/STACK TRACES THAT OCCUR :
error: unreported exception java.lang.Exception; must be caught or declared to be thrown
1 error
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
public enum Test {
FOO;
Test() throws Exception {}
}
---------- END SOURCE ----------
CUSTOMER SUBMITTED WORKAROUND :
Use JDK 5.0 to find the compile error, if possible, and then fix the compile error of course.
- relates to
-
JDK-6472751 SourcePositions.getStartPos returns incorrect value for enum constants
-
- Closed
-
-
JDK-4994049 Add support for accurate begin/end positions
-
- Closed
-