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