author | never |
Wed, 07 Jul 2010 12:40:01 -0700 | |
changeset 5915 | 406168b53eb0 |
parent 10 | 06bc494ca11e |
child 6150 | d055fa8ced62 |
permissions | -rw-r--r-- |
10 | 1 |
/* |
2 |
* @test /nodynamiccopyright/ |
|
3 |
* @bug 6491592 |
|
4 |
* @summary Compiler crashes on assignment operator |
|
5 |
* @author alex.buckley@... |
|
6 |
* @compile/fail/ref=T6491592.out -XDstdout -XDrawDiagnostics T6491592.java |
|
7 |
*/ |
|
8 |
||
9 |
public class T6491592 { |
|
10 |
public static void main(String... args) { |
|
11 |
Object o = null; |
|
12 |
o += null; |
|
13 |
} |
|
14 |
} |