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/2003-10-09-UnionInitializerBug.c
Chris Lattner 8152d183d2 New testcase
llvm-svn: 8997
2003-10-10 04:05:29 +00:00

16 lines
166 B
C

struct Foo {
unsigned a;
unsigned b;
unsigned c;
};
struct Bar {
union {
void **a;
struct Foo b;
}u;
};
struct Bar test = {0};