mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 14:50:53 +07:00
13 lines
203 B
Java
13 lines
203 B
Java
class Test {
|
|
int fieldName;
|
|
|
|
void foo(int fieldName) {
|
|
this.fieldName = fieldName;
|
|
}
|
|
}
|
|
|
|
class TestImpl extends Test {
|
|
void foo(int fieldName) {
|
|
this.fieldName = fieldName;
|
|
}
|
|
} |