New testcase for problem brian ran into
[oota-llvm.git] / test / CFrontend / 2003-10-09-UnionInitializerBug.c
1 struct Foo {
2     unsigned a;
3     unsigned b;
4     unsigned c;
5 };
6
7 struct Bar {
8     union {
9         void **a;
10         struct Foo b;
11     }u;
12 };
13
14 struct Bar test = {0};
15