mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-01 07:11:30 +07:00
GitOrigin-RevId: 085064379eed4ac2c1c0022724ac1fb4f71b5d15
20 lines
377 B
Plaintext
20 lines
377 B
Plaintext
class Of {
|
|
private int i = 0;
|
|
|
|
public static void main(String[] args) {
|
|
Of inlineMethods = new Of();
|
|
inlineMethods.test();
|
|
int i1 = inlineMethods.i;
|
|
inlineMethods.i = 2;
|
|
System.out.println(i1);
|
|
inlineMethods.test();
|
|
}
|
|
|
|
private void test() {
|
|
int i1 = this.i;
|
|
this.i = 2;
|
|
System.out.println(i1);
|
|
this.test();
|
|
}
|
|
|
|
} |