mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 09:20:53 +07:00
14 lines
188 B
Java
14 lines
188 B
Java
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);
|
|
}
|
|
} |