xref: /llvm-project/clang/test/CodeGenCXX/2009-08-05-ZeroInitWidth.cpp (revision 0f1c1be1968076d6f96f8a7bcc4a15cf195ecd97)
1 // RUN: %clang_cc1 -emit-llvm %s -o -
2 struct A {
3   unsigned long long : (sizeof(unsigned long long) * 8) - 16;
4 };
5 struct B {
6   A a;
7 };
8 struct B b = {
9   {}
10 };
11