OSDN Git Service

* gcc.c-torture/compile/20021120-1.c: New test.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / 960221-1.c
1 struct s1 { int f1; };
2
3 struct s2 {
4   struct s1 a;
5   int f2;
6 };
7
8 foo (struct s2 *ptr)
9 {
10   *ptr = (struct s2) {{}, 0};
11 }