mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
16 lines
233 B
Plaintext
16 lines
233 B
Plaintext
class Test {
|
|
void bar(A a){
|
|
a.foo();
|
|
}
|
|
class A {
|
|
void foo(){
|
|
new InnerClass().invoke();
|
|
}
|
|
|
|
private class InnerClass {
|
|
public void invoke() {
|
|
int i = 0;
|
|
}
|
|
}
|
|
}
|
|
} |