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

9 lines
217 B
Java

class Test {
private String test(int[] all) {
for (int z : all) {
<selection>if (z > 5) continue;
if (z < 0) return "sample";</selection>
}
return "default";
}
}