mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 17:20:55 +07:00
14 lines
186 B
Java
14 lines
186 B
Java
public class Test {
|
|
int myI;
|
|
void foo(int i){
|
|
myI = i;
|
|
}
|
|
}
|
|
|
|
class TestImpl extends Test {
|
|
void foo(int i){
|
|
super.foo(i);
|
|
int pp = 0;
|
|
System.out.println(pp);
|
|
}
|
|
} |