// "Invert If Condition" "true" class A { void foo () { int a = 0, b = 0; for (;;) { if (a != b) { a = b; } } } }