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