blob: 64847ab2afd14802314a31db02bdb8c4ccfaa939 [file] [log] [blame]
class A<T> {
void foo(T t){}
void bar(T t, int i){}
}
class B extends A<Object> {
void foo(Object t) {
super.foo(t);
}
void bar(Object t, int i){
foo(t);
int k = i;
super.bar(t, k);
}
}