• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 namespace cpp {
2 
3 extern int foo3(int);
4 
foo4(int x)5 int foo4(int x) {
6   return foo3(x) + 4;
7 }
8 
9 }  // namespace cpp
10