1 2 3 4 5 6 7 8 9 10
void foo(int x) { if (x > 10) { return; } else if (x < -10) { x = -10; } else { x = -x; } }