Authors: russell@unturf.com · brackishbert@gmail.com · foxhop.net · TimeHexOn.com Patches, unit tests, benchmarks, whitepaper, and outreach briefs. Public domain — no copyright claimed. Use freely.
14 lines
313 B
Java
14 lines
313 B
Java
/*
|
|
* @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 meth() {
|
|
Object o = null;
|
|
o += null;
|
|
}
|
|
}
|