langtools/test/tools/javac/UncaughtOverflow.java
author jjg
Wed, 29 Oct 2014 17:25:23 -0700 (2014-10-30)
changeset 27319 030080f03e4f
parent 26901 2c11dc81a5c8
permissions -rw-r--r--
8062348: langtools tests should close file manager (group 1) Reviewed-by: darcy
/*
 * @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;
}