1 // Compile this with:
2 // g++ -Wall -g -shared -o libtest5-fn-suppr-v0.so test5-fn-suppr-v0.cc
3 
4 struct S
5 {
6   int m1;
7 
SS8     S()
9     : m1()
10   {}
11 };
12 
13 void
bar(S *)14 bar(S*)
15 {
16 }
17 
18 void
bar(int,S)19 bar(int, S)
20 {
21 }
22