langtools/test/tools/javac/6491592/T6491592.java
author never
Wed, 07 Jul 2010 12:40:01 -0700
changeset 5915 406168b53eb0
parent 10 06bc494ca11e
child 6150 d055fa8ced62
permissions -rw-r--r--
Merge

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

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