2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / init-3.c
blobbe3d9b49679a282b3b1aa35b603cad6a2db54039
1 struct empty { };
2 struct something {
3 int spacer;
4 struct empty foo;
5 int bar;
6 };
8 struct something X = {
9 foo: { },
10 bar: 1,