mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-19 18:44:38 +02:00
14 lines
327 B
Java
14 lines
327 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 main(String... args) {
|
|
Object o = null;
|
|
o += null;
|
|
}
|
|
}
|