bolt/deps/llvm-18.1.8/clang/test/CodeGen/2003-01-30-UnionInit.c
2025-02-14 19:21:04 +01: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} };