blob: 7a77c2d66117974074e9b8db23c73eccea101edb [file] [log] [blame]
interface IA{
void fooa();
}
interface IB{
void foob();
}
interface IC<T extends IA>{
T c();
}
class K {
void foo(IC<? extends IB> x){
x.c().fo<caret>
}
}