We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
void foo(bool x, bool y) { if (x) print(0); else if (y) print(1); else print(2); }
Apply at print(0), only if (x) is fixed.
print(0)
if (x)
void foo(bool x, bool y) { if (x) { print(0); } else if (y) print(1); else print(2); }
Cannot be applied at print(1) initially or after the first fix.
print(1)