Files
Tagir Valeev 19141f3dbc [java-slices] Avoid walking through inheritance when starting from parameter (IDEA-154777)
GitOrigin-RevId: 327559f0649b3bb66b04b056627966b6a0e1618f
2021-05-28 10:51:17 +00:00

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) {
}
}
}