Files
Alexandr Suhininandintellij-monorepo-bot 2f9a173e88 test: add test data for newly supported cases
GitOrigin-RevId: 01bda01714863b5c174c85350542cb1c49440e42
2020-04-01 09:31:41 +00:00

17 lines
350 B
Java

class Test {
public void test(int x , int y) {
while (x < 10) {
x++;
if (x <= y) {
newMethod(x, y);
} else {
System.out.println();
}
}
}
private void newMethod(int x, int y) {
if (x == y) return;
System.out.println();
}
}