blob: d22b0a54a017ff78bffa6795e9c18a53e07fa363 [file] [log] [blame]
int g1 = 0;
int g2 = 1;
void foo(int n) {
if (n % 5 == 0)
g1++;
else
g2++;
}