1// Compile with: 2// g++ -g -shared -o libobj-v0.so obj-v0.cc 3 4struct S 5{ 6 int mem0; 7 8 S() 9 : mem0() 10 {} 11}; 12 13void 14bar(S&) 15{} 16