foo(int x)1 extern int foo(int x) { 2 int y = x + 42; // break other 3 int z = y + 42; 4 return z; 5 } 6