FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 960221-1.c
blob0e02496c1045c8cc56b1616e76b96446e49f3544
1 struct s1 { int f1; };
3 struct s2 {
4 struct s1 a;
5 int f2;
6 };
8 foo (struct s2 *ptr)
10 *ptr = (struct s2) {{}, 0};