blob: 4296b918cbcc8983bd1d6a1e1c22406378829d77 [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 -emit-llvm %s -o -
2// PR4082
3union U {
4 int I;
5 double F;
6};
7
8union U arr[] = { { .I = 4 }, { .F = 123.} };
9union U *P = &arr[0];
10
11