xref: /llvm-project/clang/test/CodeGen/2007-03-26-BitfieldAfterZeroWidth.c (revision 85e5156598b1bbad0ae41cf4d0d5b845dd655ffd)
1 // RUN: %clang_cc1 %s -emit-llvm -o -
2 struct W {};
3 struct Y {
4   struct W w;
5   int i:1;
6 } __attribute__ ((packed)) y;
7