1 // Compile this with:
2 //   g++ -g -Wall -shared -o libtest13-suppr-through-pointer-v0.so test13-suppr-through-pointer-v0.cc
3 
4 struct S
5 {
6   int m0;
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