2007-12-01 00:00:00 +00:00
|
|
|
/*
|
|
|
|
* @test /nodynamiccopyright/
|
|
|
|
* @bug 6491592
|
|
|
|
* @summary Compiler crashes on assignment operator
|
|
|
|
* @author alex.buckley@...
|
2010-07-26 14:18:45 -07:00
|
|
|
* @compile/fail/ref=T6491592.out -XDrawDiagnostics T6491592.java
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
public class T6491592 {
|
|
|
|
public static void main(String... args) {
|
|
|
|
Object o = null;
|
|
|
|
o += null;
|
|
|
|
}
|
|
|
|
}
|