Files
Tagir Valeev 3fb3c93d3d [java-refactoring] Test for EA-882906 fix
GitOrigin-RevId: 085064379eed4ac2c1c0022724ac1fb4f71b5d15
2023-10-12 18:24:24 +00:00

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();
}
}