author | phh |
Sat, 30 Nov 2019 14:33:05 -0800 | |
changeset 59330 | 5b96c12f909d |
parent 47216 | 71c04702a3d5 |
permissions | -rw-r--r-- |
10 | 1 |
/* |
2 |
* @test /nodynamiccopyright/ |
|
3 |
* @bug 6491592 |
|
4 |
* @summary Compiler crashes on assignment operator |
|
5 |
* @author alex.buckley@... |
|
6150 | 6 |
* @compile/fail/ref=T6491592.out -XDrawDiagnostics T6491592.java |
10 | 7 |
*/ |
8 |
||
9 |
public class T6491592 { |
|
10 |
public static void main(String... args) { |
|
11 |
Object o = null; |
|
12 |
o += null; |
|
13 |
} |
|
14 |
} |