author | katleman |
Thu, 21 Aug 2014 14:16:14 -0700 | |
changeset 25878 | 6d561031123e |
parent 8611 | 316231b590b6 |
permissions | -rw-r--r-- |
10 | 1 |
/* |
8239
d2c934e951e2
7014715: javac returns different error code for certain failure(s)
mcimadamore
parents:
5520
diff
changeset
|
2 |
* @test /nodynamiccopyright/ |
8611 | 3 |
* @bug 4406966 6969184 |
10 | 4 |
* @summary null qualifying inner instance creation should be error. |
5 |
* @author gafter |
|
6 |
* |
|
8239
d2c934e951e2
7014715: javac returns different error code for certain failure(s)
mcimadamore
parents:
5520
diff
changeset
|
7 |
* @compile/fail/ref=QualifiedNew.out -XDrawDiagnostics QualifiedNew.java |
10 | 8 |
*/ |
9 |
||
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 |
} |