xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenCXX/2010-06-22-ZeroBitfield.cpp (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1 // RUN: %clang_cc1 -emit-llvm -g %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