1struct S0
2{
3  int m1;
4  char m12;
5
6  S0()
7    : m1(0),
8      m12(0)
9  {}
10};
11
12void
13foo(S0&)
14{}
15