1 // gcc -g -Wall -shared -o libtest21-redundant-fn-v0.so test21-redundant-fn-v0.cc
2 
3 struct S
4 {
5   int m0;
6 };
7 
8 void
foo(S *)9 foo(S*)
10 {
11 }
12 
13 void
bar(S &)14 bar(S&)
15 {
16 }
17