blob: 5beb14e5f8f029096299e0f45da276b469d273f3 [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3struct istruct {
4 unsigned char C;
5};
6
7struct foo {
8 unsigned int I:1;
9 struct istruct J;
10 unsigned char L[1];
11 unsigned int K:1;
12};
13
14struct foo F = { 1, { 7 }, { 123 } , 1 };
15
16