1// Compile with: 2// g++ -g -fPIC -shared -o libtest32-v1.so test32-v1.c 3 4namespace priv 5{ 6 int foo() {return 0;} 7} 8 9namespace pub 10{ 11 char bar() {return 0;} 12} 13