1 // To compile this:
2 //  g++ -g -Wall -shared -o libtest11-add-data-member-v0.so test11-add-data-member-v0.cc
3 struct S
4 {
5   char m0;
6 };
7 
8 int
foo(S * s)9 foo(S* s)
10 {return !!s;}
11