1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
void foo(int x) { if (x > 3) {;} else bar(); x = 9; } main() { int j; foo(j); return j; }