0N/A/*
0N/A * @test /nodynamiccopyright/
0N/A * @bug 6491592
0N/A * @summary Compiler crashes on assignment operator
0N/A * @author alex.buckley@...
610N/A * @compile/fail/ref=T6491592.out -XDrawDiagnostics T6491592.java
0N/A */
0N/A
0N/Apublic class T6491592 {
0N/A public static void main(String... args) {
0N/A Object o = null;
0N/A o += null;
0N/A }
0N/A}