jdk
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*/
9
10class QualifiedNew {
11class Y {}
12class Z {
13Y[] a;
14Object tmp1 = null.new Y();
15Object tmp2 = a.new Y();
16}
17}
18