1 // Compile with: 2 // g++ -g -Wall -c test14-suppr-non-redundant-v0.cc 3 4 struct S 5 { 6 int m0; 7 char m1; 8 }; 9 10 void bar(S &)11 bar(S&) 12 {} 13 14 void baz(S *)15 baz(S*) 16 {} 17