llvm-6502/test/CFrontend/2003-10-09-UnionInitializerBug.c
Chris Lattner 83bb2565c6 New testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8997 91177308-0d34-0410-b5e6-96231b3b80d8
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};