Files
openide/java/java-tests/testData/refactoring/extractMethodNew/NoRedundantContinue.java
Alexandr Suhinin 2f9a173e88 test: add test data for newly supported cases
GitOrigin-RevId: 01bda01714863b5c174c85350542cb1c49440e42
2020-04-01 09:31:41 +00:00

13 lines
308 B
Java

class Test {
public void test(int x , int y) {
while (x < 10) {
x++;
if (x <= y) {
<selection>if (x == y) continue;
System.out.println();</selection>
} else {
System.out.println();
}
}
}
}