OSDN Git Service

PR middle-end/51761
[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 }