mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 04:10:49 -05:00
11 lines
154 B
C
11 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];
|
|
|
|
|