3789983e89
Reviewed-by: darcy, ihse
14 lines
360 B
Java
14 lines
360 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 6882235
|
|
* @summary invalid exponent causes silent javac crash
|
|
*
|
|
* @compile/fail/ref=T6882235.out -XDrawDiagnostics T6882235.java
|
|
*/
|
|
|
|
class T6882235 {
|
|
int i = ; // invalid expression
|
|
float f = 0e*; // invalid exponent, should not crash compiler
|
|
int j = ; // invalid expression
|
|
}
|