xref: /aosp_15_r20/external/clang/test/CodeGenCXX/2010-06-22-ZeroBitfield.cpp (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 // RUN: %clang_cc1 -emit-llvm -debug-info-kind=limited %s -o -
2 struct s8_0 { unsigned : 0; };
3 struct s8_1 { double x; };
4 struct s8 { s8_0 a; s8_1 b; };
f8()5 s8 f8() { return s8(); }
6