langtools/test/tools/javac/6491592/T6491592.java
author jjg
Mon, 26 Jul 2010 14:18:45 -0700
changeset 6150 d055fa8ced62
parent 10 06bc494ca11e
permissions -rw-r--r--
6971882: Remove -XDstdout from javac test Reviewed-by: darcy

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