test/langtools/tools/javac/6491592/T6491592.java
author iignatyev
Thu, 21 Jun 2018 22:17:22 -0700
changeset 50709 483806baeba1
parent 47216 71c04702a3d5
permissions -rw-r--r--
8172854: [TESTBUG] Exclude runtime/ReservedStack/ReservedStackTest.java from being run with DeoptimizeALot option Reviewed-by: kvn

/*
 * @test /nodynamiccopyright/
 * @bug     6491592
 * @summary Compiler crashes on assignment operator
 * @author  alex.buckley@...
 * @compile/fail/ref=T6491592.out -XDrawDiagnostics T6491592.java
 */

public class T6491592 {
    public static void main(String... args) {
        Object o = null;
        o += null;
    }
}