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