mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 17:20:55 +07:00
11 lines
165 B
Java
11 lines
165 B
Java
class C {
|
|
int foo(int x, int anObject) {
|
|
return anObject;
|
|
}
|
|
}
|
|
|
|
class D extends C {
|
|
int foo(int x, int anObject) {
|
|
return super.foo(x, anObject);
|
|
}
|
|
} |