blob: e050a74b282b7f3b1532766f80e36b2f89b1d9c0 [file] [log] [blame]
// "Unimplement Interface" "true"
class A {
public String toString() {
return super.toString();
}
}
interface II<T> {
void foo(T ty);
}