mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 00:29:58 +07:00
GitOrigin-RevId: 085064379eed4ac2c1c0022724ac1fb4f71b5d15
20 lines
333 B
Java
20 lines
333 B
Java
class Of {
|
|
private int i = 0;
|
|
|
|
public static void main(String[] args) {
|
|
Of inlineMethods = new Of();
|
|
inlineMethods.test();
|
|
inlineMethods.test2();
|
|
}
|
|
|
|
private void test() {
|
|
this.test2();
|
|
}
|
|
|
|
private void te<caret>st2() {
|
|
int i1 = this.i;
|
|
this.i = 2;
|
|
System.out.println(i1);
|
|
this.test();
|
|
}
|
|
} |