blob: 915f73b6637e3a630fd694a7c31a59e5644bfe9d [file] [log] [blame]
// "Invert If Condition" "true"
class A {
void foo () {
int a = 0, b = 0;
for (;;) {
<caret>if (a == b) continue;
a = b;
}
}
}