mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 23:20:57 +07:00
10 lines
145 B
Java
10 lines
145 B
Java
class Outer {
|
|
private void foo() {}
|
|
|
|
static class Inner extends Outer {
|
|
void bar() {
|
|
<caret>foo();
|
|
}
|
|
}
|
|
|
|
} |