blob: 839af0ca8536c2984914182d3d74c074c81d8e8a [file] [log] [blame]
class Outer {
private void foo() {}
static class Inner extends Outer {
void bar() {
<ref>foo();
}
}
}