mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
15 lines
265 B
Plaintext
15 lines
265 B
Plaintext
public class XXX {
|
|
void foo() {
|
|
new InnerClass().invoke();
|
|
}
|
|
|
|
private class InnerClass {
|
|
public void invoke() {
|
|
int i = 0 ;
|
|
bar(i);
|
|
System.out.println(i);
|
|
}
|
|
|
|
private void bar(int i){}
|
|
}
|
|
} |