mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 12:20:55 +07:00
13 lines
342 B
Java
13 lines
342 B
Java
package pck;
|
|
|
|
abstract class A<S> {
|
|
S y;
|
|
void bar(A<? extends int[]> x){
|
|
Object obj = <error descr="Array type expected; found: 'capture<? extends int[]>'">x.y</error>[0];
|
|
}
|
|
|
|
void baz(A<? super int[]> x){
|
|
Object obj = <error descr="Array type expected; found: 'capture<? super int[]>'">x.y</error>[0];
|
|
}
|
|
}
|