/in/foo.cc: In function 'int main()':
/in/foo.cc:11:25: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
11 | if(b%c==0)
| ^~
/in/foo.cc:13:33: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
13 | c++;
| ^
/in/foo.cc:15:17: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
15 | if(c==b)
| ^~
/in/foo.cc:17:25: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
17 | c=2;
| ^