blob: c4b6760e5854079f330351a8adb9f329d4d23817 [file] [log] [blame]
class X {
static class Y<T> {
}
static <T> Y<T> x(Y<? super Y<T>> y) {
return null;
}
{
Y<Y<Long>> y1 = null;
X.<ref>x(y1);
}
}
}