1// Compile with: 2// gcc -gctf -shared -o libobj-v0.so obj-v0.c 3 4struct S0 5{ 6 int mem0; 7}; 8 9struct S1 10{ 11}; 12 13void 14bar(struct S0 *s) 15{} 16 17void 18foo(struct S1 *s) 19{} 20