test/tools/javac/6491592/T6491592.java

Fri, 21 Aug 2009 14:58:21 -0700

author
jjg
date
Fri, 21 Aug 2009 14:58:21 -0700
changeset 377
d9febdd5ae21
parent 1
9a66ca7c79fa
child 611
4172cfff05f0
permissions
-rw-r--r--

6873845: refine access to symbol file
Reviewed-by: darcy

     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  */
     9 public class T6491592 {
    10     public static void main(String... args) {
    11         Object o = null;
    12         o += null;
    13     }
    14 }

mercurial