langtools/test/tools/javac/T6882235.java
author mchung
Wed, 27 May 2015 13:25:18 -0700
changeset 30846 2b3f379840f0
parent 30716 1bbdff43424d
permissions -rw-r--r--
8074432: Move jdeps and javap to jdk.jdeps module Reviewed-by: jjg, alanb, erikj

/*
 * @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
}