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