test/tools/javac/QualifiedNew.java

Fri, 18 Feb 2011 15:55:20 -0800

author
darcy
date
Fri, 18 Feb 2011 15:55:20 -0800
changeset 884
75e25df50873
parent 855
afe226180744
child 890
3ab7bb46c5c1
permissions
-rw-r--r--

7020047: Project Coin: generate null-check around try-with-resources close call
Reviewed-by: jjg

     1 /*
     2  * @test  /nodynamiccopyright/
     3  * @bug 4406966
     4  * @summary null qualifying inner instance creation should be error.
     5  * @author gafter
     6  *
     7  * @compile/fail/ref=QualifiedNew.out -XDrawDiagnostics QualifiedNew.java
     8  */
    10 class QualifiedNew {
    11     class Y {}
    12     class Z {
    13         Y[] a;
    14         Object tmp1 = null.new Y();
    15         Object tmp2 = a.new Y();
    16     }
    17 }

mercurial