author | duke |
Wed, 05 Jul 2017 23:01:50 +0200 | |
changeset 44228 | e46434c65a2b |
parent 30716 | 1bbdff43424d |
permissions | -rw-r--r-- |
/* * @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 }