1struct S
2{
3  int  m0;
4  char m1;
5
6  S()
7  : m0(), m1()
8  {}
9};
10
11int
12foo(S&);
13