1 #include "test.h" 2 #include "test2.h" 3 4 namespace a { f()5 int Foo::f() { 6 return 0; 7 } f2(int a,int b)8 int Foo::f2(int a, int b) { 9 return a + b; 10 } 11 } // namespace a 12