New testcase

llvm-svn: 8997
This commit is contained in:
Chris Lattner 2003-10-10 04:05:29 +00:00
parent 6f8cd63693
commit 7bfec50f74
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
struct Foo {
unsigned a;
unsigned b;
unsigned c;
};
struct Bar {
union {
void **a;
struct Foo b;
}u;
};
struct Bar test = {0};