mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-12 17:22:08 +07:00
19141f3dbc
GitOrigin-RevId: 327559f0649b3bb66b04b056627966b6a0e1618f
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) {
|
|
}
|
|
}
|
|
} |