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