langtools/test/tools/javac/UncaughtOverflow.java
author mcimadamore
Wed, 26 Oct 2016 15:41:25 +0100
changeset 41856 13a056e8f16e
parent 26901 2c11dc81a5c8
permissions -rw-r--r--
8168774: Polymorhic signature method check crashes javac Summary: Check for polysig method assumes arity is greater than zero Reviewed-by: vromero

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