mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-14 17:25:38 +07:00
16 lines
175 B
Java
16 lines
175 B
Java
class X {
|
|
static class Y<T> {
|
|
}
|
|
|
|
static <T> Y<T> x(Y<? super T[]> y) {
|
|
return null;
|
|
}
|
|
|
|
|
|
{
|
|
Y<Long[]> y1 = null;
|
|
X.<ref>x(y1);
|
|
}
|
|
}
|
|
}
|