Tanya Lattner | 12ff968 | 2004-11-06 20:38:27 +0000 | [diff] [blame^] | 1 | // XFAIL: linux,sun,darwin |
Chris Lattner | df97919 | 2003-08-30 20:57:49 +0000 | [diff] [blame] | 2 | struct istruct { |
3 | unsigned char C; | ||||
4 | }; | ||||
5 | |||||
6 | struct foo { | ||||
7 | unsigned int I:1; | ||||
8 | struct istruct J; | ||||
9 | unsigned char L[1]; | ||||
10 | unsigned int K:1; | ||||
11 | }; | ||||
12 | |||||
13 | struct foo F = { 1, { 7 }, { 123 } , 1 }; | ||||
14 | |||||
15 |