android_mt6572_jiabo/external/clang/test/CodeGen/2003-01-30-UnionInit.c
2025-09-05 16:56:03 +08:00

8 lines
125 B
C

// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
union foo {
struct { char A, B; } X;
int C;
};
union foo V = { {1, 2} };