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