mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
20 lines
226 B
Java
20 lines
226 B
Java
class C {
|
|
void method() {
|
|
method(27);
|
|
}
|
|
|
|
void method(int i) {
|
|
}
|
|
}
|
|
|
|
class C1 extends C {
|
|
void method(int i) {
|
|
}
|
|
}
|
|
|
|
class Usage {
|
|
{
|
|
new C().method();
|
|
new C1().method();
|
|
}
|
|
} |