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