mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 23:20:57 +07:00
16 lines
179 B
Java
16 lines
179 B
Java
class X {
|
|
static class Y<T> {
|
|
}
|
|
|
|
static <T> Y<T> x(Y<? super Y<T>> y) {
|
|
return null;
|
|
}
|
|
|
|
|
|
{
|
|
Y<Y<Long>> y1 = null;
|
|
X.<caret>x(y1);
|
|
}
|
|
}
|
|
}
|