1 // Compile this with: 2 // g++ -g -Wall -shared -o libtest13-suppr-through-pointer-v1.so test13-suppr-through-pointer-v1.cc 3 struct S 4 { 5 int m0; 6 char m1; 7 }; 8 9 void bar(S *)10 bar(S*) 11 { 12 } 13 14 void foo(S)15 foo(S) 16 { 17 } 18 19 void fu(S **)20 fu(S**) 21 {} 22