1 // Compile with: 2 // g++ -g -Wall -c -fPIC -fdebug-types-section test23-first-tu.cc 3 // g++ -g -Wall -c -fPIC -fdebug-types-section test23-second-tu.cc 4 // g++ -g -shared -fuse-ld=gold -o libtest23.so test23-first-tu.o test23-second-tu.o 5 #include <string> 6 #include <iostream> 7 8 using std::cout; 9 using std::string; 10 11 void emit(string & s)12emit(string& s) 13 { 14 cout << s << "\n"; 15 } 16