summaryrefslogtreecommitdiff
path: root/test/CFrontend/2003-08-30-LargeIntegerBitfieldMember.c
blob: 66d778c57c30ef224638fa1903a5f26d4802e2d0 (plain)
1
2
3
4
5
6
7
8

struct foo {
  unsigned int I:1;
  unsigned char J[1][123];
  unsigned int K:1;
 };

struct foo F;