blob: 148ed4397a8787787de4325d49421020611f41c5 [file] [log] [blame]
interface I<T> {}
class Pair<X> {
void foo (I<? extends X> i){}
}
public class Test {
Pair pair;
void bar(){
pair.foo (new I<I> ());
}
}