langtools/test/tools/javac/UncaughtOverflow.java
author sogoel
Wed, 01 Oct 2014 14:15:40 -0700
changeset 26901 2c11dc81a5c8
parent 5520 86e4b9a9da40
permissions -rw-r--r--
8055783: Group 9e: golden files for tests in tools/javac dir Reviewed-by: jjg, mcimadamore

/*
 * @test /nodynamiccopyright/
 * @bug 4035346 4097402
 * @summary Compiler used to allow this initialization, despite the overflow.
 * @author turnidge
 *
 * @compile/fail/ref=UncaughtOverflow.out -XDrawDiagnostics UncaughtOverflow.java
 */

public
class UncaughtOverflow {
    int i1 = 100000000000;
    int i2 = -2147483649;
}