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