xref: /aosp_15_r20/external/clang/test/CodeGen/2005-05-10-GlobalUnionInit.c (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 // RUN: %clang_cc1 %s -emit-llvm -o -
2 
3 union A {                    // { uint }
4   union B { double *C; } D;
5 } E = { { (double*)12312 } };
6 
7