blob: 9039f28e9617aedede1e97046694e4ba87c3351b [file] [log] [blame]
class Test {
int i;
void foo() {
i++;
++i;
i--;
--i;
if (i == 0);
}
}