blob: 7ae173df92f9e53e6e570a6c623362c1376ca2af [file] [log] [blame]
Chris Lattnerdf979192003-08-30 20:57:49 +00001
2struct istruct {
3 unsigned char C;
4};
5
6struct foo {
7 unsigned int I:1;
8 struct istruct J;
9 unsigned char L[1];
10 unsigned int K:1;
11};
12
13struct foo F = { 1, { 7 }, { 123 } , 1 };
14
15