mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-07 04:38:20 +00:00
9 lines
115 B
C
9 lines
115 B
C
// RUN: %llvmgcc -S %s -o /dev/null
|
|
|
|
union foo {
|
|
struct { char A, B; } X;
|
|
int C;
|
|
};
|
|
|
|
union foo V = { {1, 2} };
|