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