blob: 0e02496c1045c8cc56b1616e76b96446e49f3544 [file] [log] [blame]
struct s1 { int f1; };
struct s2 {
struct s1 a;
int f2;
};
foo (struct s2 *ptr)
{
*ptr = (struct s2) {{}, 0};
}