1118611Snjlstruct s1 { int f1; };
2118611Snjl
3118611Snjlstruct s2 {
4207344Sjkim  struct s1 a;
5118611Snjl  int f2;
6118611Snjl};
7118611Snjl
8118611Snjlfoo (struct s2 *ptr)
9118611Snjl{
10118611Snjl  *ptr = (struct s2) {{}, 0};
11118611Snjl}
12202771Sjkim