Add new interfaces
[oota-llvm.git] / test / CFrontend / 2003-08-29-StructLayoutBug.c
1 struct foo {
2   unsigned int I:1;
3   unsigned char J[1];
4   unsigned int K:1;
5  };
6
7 void test(struct foo *X) {}
8