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