1 namespace cpp { 2 3 extern int foo3(int); 4 5 int foo4(int x) { 6 return foo3(x) + 4; 7 } 8 9 } // namespace cpp 10