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