aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/init-3.c
blob: be3d9b49679a282b3b1aa35b603cad6a2db54039 (plain)
1
2
3
4
5
6
7
8
9
10
11
struct empty { };
struct something {
	int spacer;
	struct empty foo;
	int bar;
};

struct something X = {
	foo: { },
	bar: 1,
};