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