blob: 0f2ab076a986e93f4117e0ee998896caa2e0e06f [file] [log] [blame]
class Test {
public static String bar(int x , int y) {
while (true) {
<selection>if (x == y) {
continue;
}
System.out.println("HW");</selection>
}
}
private static int g() {
return 0;
}
}