2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2014-07-17 18:22:47 +00:00
|
|
|
* @test /nodynamiccopyright/
|
2007-12-01 00:00:00 +00:00
|
|
|
* @bug 6318240
|
|
|
|
* @summary Creation of array of inner class of an enclosing wildcard type doesn't work
|
2014-07-17 18:22:47 +00:00
|
|
|
* @compile/fail/ref=BarNeg2.out -XDrawDiagnostics BarNeg2.java
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
class BarNeg2<T> {
|
|
|
|
BarNeg2<?>.Inner<?>.InnerMost[] array = new BarNeg2<Object>.Inner<?>.InnerMost[10];
|
|
|
|
class Inner<S> {
|
|
|
|
class InnerMost {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|