• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // gcc -g -Wall -shared -o libtest21-redundant-fn-v1.so test21-redundant-fn-v1.cc
2 
3 struct S
4 {
5   int m0;
6   char m1;
7 };
8 
9 void
foo(S *)10 foo(S*)
11 {
12 }
13 
14 void
bar(S &)15 bar(S&)
16 {
17 }
18