mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-29 10:39:18 +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) {
|
|
}
|
|
}
|
|
} |