author | iignatyev |
Thu, 21 Jun 2018 22:17:22 -0700 | |
changeset 50709 | 483806baeba1 |
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 |
} |