mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-27 21:36:06 +00:00
12 lines
154 B
C
12 lines
154 B
C
// RUN: %clang_cc1 -emit-llvm %s -o -
|
|
// PR4082
|
|
union U {
|
|
int I;
|
|
double F;
|
|
};
|
|
|
|
union U arr[] = { { .I = 4 }, { .F = 123.} };
|
|
union U *P = &arr[0];
|
|
|
|
|