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