21 lines · cpp
1// RUN: %clang_cc1 -emit-llvm -debug-info-kind=limited %s -o -2struct TEST23{4 int subid:32;5 int :0;6};7 8typedef struct _TEST39{10 TEST2 foo;11 TEST2 foo2;12} TEST3;13 14TEST3 test =15 {16 {0},17 {0}18 };19 20int main() { return 0; }21