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