1 // Compile this with:
2 //
3 // g++ -shared -g -o libtest35-leaf-v1.so test35-leaf-v1.cc
4 
5 struct leaf
6 {
7   int m0;
8   char m1;
9 };
10 
11 struct leaf_to_filter
12 {
13   int member0;
14   int added;
15 };
16 
17 struct C
18 {
19   leaf *m0;
20   leaf_to_filter *m1;
21 };
22 
23 void
fn(C &)24 fn(C&)
25 {}
26