1 2 3 4 5 6 7 8 9 10 11
int foo(int x) { if (x > 10) { return x; } else { while (x > 0) { x--; } return 0; } }