1struct C0
2{
3  int m0;
4
5  C0()
6    :m0(0)
7  {}
8};
9
10typedef C0 c0_type;
11
12c0_type
13foo()
14{return C0();}
15