mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +07:00
16 lines
173 B
Java
16 lines
173 B
Java
class X {
|
|
static class Y<T> {
|
|
}
|
|
|
|
static <T> Y<T> x(Y<? super T> y) {
|
|
return null;
|
|
}
|
|
|
|
|
|
{
|
|
Y<Long> y1 = null;
|
|
X.<caret>x(y1);
|
|
}
|
|
}
|
|
}
|