author | prr |
Fri, 25 May 2018 12:12:24 -0700 | |
changeset 50347 | b2f046ae8eb6 |
parent 47216 | 71c04702a3d5 |
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 }