[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / CodeGen / 2003-08-30-AggregateInitializer.c
blob5beb14e5f8f029096299e0f45da276b469d273f3
1 // RUN: %clang_cc1 -emit-llvm %s -o /dev/null
3 struct istruct {
4 unsigned char C;
5 };
7 struct foo {
8 unsigned int I:1;
9 struct istruct J;
10 unsigned char L[1];
11 unsigned int K:1;
14 struct foo F = { 1, { 7 }, { 123 } , 1 };