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