langtools/test/tools/javac/T6882235.java
author sogoel
Fri, 05 Sep 2014 16:43:00 -0700
changeset 26528 a1a7ad15183e
parent 3894 e470a29ed0a2
child 30716 1bbdff43424d
permissions -rw-r--r--
8055075: Group 9b: golden files for tests in tools/javac dir Reviewed-by: jjg

/*
 * @test /nodynamiccopyright/
 * @bug 6882235
 * @summary invalid exponent causes silent javac crash
 *
 * @compile/fail T6882235.java
 * @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
}