changeset 47216 | 71c04702a3d5 |
parent 26901 | 2c11dc81a5c8 |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test/langtools/tools/javac/UncaughtOverflow.java Tue Sep 12 19:03:39 2017 +0200 @@ -0,0 +1,14 @@ +/* + * @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; +}