1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 14:32:51 +01:00
llvm-mirror/test/Regression/CFrontend/2005-05-10-GlobalUnionInit.c
Chris Lattner 877248c8a3 new testcase for PR562
llvm-svn: 21849
2005-05-10 22:32:29 +00:00

7 lines
129 B
C

// RUN: %llvmgcc %s -S -o -
union A { // { uint }
union B { double *C; } D;
} E = { { (double*)12312 } };