blob: 0a95dba3731a6084d5cdaeda7d06a242eb501d5d [file] [log] [blame]
// "Make 'a' implement 'b'" "true"
interface b<T> {
void f(T t);
}
class a {}
class X {
void h(b<? super Integer> i) {
}
void g() {
h(new a<caret>());
}
}