mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
18 lines
379 B
Java
18 lines
379 B
Java
public class OverloadedMember {
|
|
static class Base {
|
|
void method(int param) {
|
|
helloBase(param);
|
|
}
|
|
private void helloBase(int param) {
|
|
}
|
|
}
|
|
|
|
static class Impl extends Base {
|
|
void method(int param<caret>) {
|
|
helloImpl(<flown1>param);
|
|
System.out.println("param = " + param);
|
|
}
|
|
private void helloImpl(int <flown11>param) {
|
|
}
|
|
}
|
|
} |