blob: 259c45e2397c2f7bfadbe4cfd21e62f1712e3693 [file] [log] [blame]
public class Test {
int myI;
void foo(int pp){
myI = pp;
}
}
class TestImpl extends Test {
void foo(int i){
super.foo(i);
int pp = 0;
System.out.println(pp);
}
}