15 lines
386 B
Java
Raw Normal View History

2007-12-01 00:00:00 +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
* @compile/fail/ref=BarNeg1.out -XDrawDiagnostics BarNeg1.java
2007-12-01 00:00:00 +00:00
*/
class BarNeg1<T> {
BarNeg1<?>.Inner<?>.InnerMost[] array = new BarNeg1<?>.Inner<Object>.InnerMost[10];
class Inner<S> {
class InnerMost {
}
}
}