Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2183176 | OpenJDK6 | Jonathan Gibbons | P3 | Resolved | Fixed | b17 |
A floating point constant of zero with an invalid exponent will cause javac to silently crash.
Compile:
class Test { double d = 0ea ; }
Output:
play/Test.java:3: malformed floating point literal
float f = 0e*; // invalid exponent
Note the compiler does no report the number of errors found. This is incorrect behavior.
Compile:
class Test { double d = 0ea ; }
Output:
play/Test.java:3: malformed floating point literal
float f = 0e*; // invalid exponent
Note the compiler does no report the number of errors found. This is incorrect behavior.
- backported by
-
JDK-2183176 invalid exponent causes silent javac crash
-
- Resolved
-
- duplicates
-
JDK-6560259 java.lang.StringIndexOutOfBoundsException while parsing malformed float literal
-
- Closed
-