test/tools/javac/QualifiedNew.java

Tue, 06 Nov 2012 14:45:27 +0000

author
mcimadamore
date
Tue, 06 Nov 2012 14:45:27 +0000
changeset 1396
9b85813d2262
parent 890
3ab7bb46c5c1
child 2525
2eb010b6cb22
permissions
-rw-r--r--

8002286: Regression: Fix for 8000931 causes a JCK test failure
Summary: Wrong type used as 'site' in Resolve.resolveMethod
Reviewed-by: jjg

     1 /*
     2  * @test  /nodynamiccopyright/
     3  * @bug 4406966 6969184
     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