8sa1-gcc/gcc/testsuite/gcc.c-torture/compile/960221-1.c
Jeff Law 921e5a0eb4 Initial revision
From-SVN: r14840
1997-08-19 01:34:40 -06:00

12 lines
120 B
C

struct s1 { int f1; };
struct s2 {
struct s1 a;
int f2;
};
foo (struct s2 *ptr)
{
*ptr = (struct s2) {{}, 0};
}