android13/external/libabigail/tests/data/test-read-dwarf/test23-first-tu.cc

16 lines
357 B
C++

// Compile with:
// g++ -g -Wall -c -fPIC -fdebug-types-section test23-first-tu.cc
// g++ -g -Wall -c -fPIC -fdebug-types-section test23-second-tu.cc
// g++ -g -shared -fuse-ld=gold -o libtest23.so test23-first-tu.o test23-second-tu.o
#include <string>
#include <iostream>
using std::cout;
using std::string;
void
emit(string& s)
{
cout << s << "\n";
}