blob: e574a1931d3a6c73d7cc011d1983f0869a03d64b [file] [log] [blame]
Chris Lattner83bb2562003-10-10 04:05:29 +00001struct Foo {
2 unsigned a;
3 unsigned b;
4 unsigned c;
5};
6
7struct Bar {
8 union {
9 void **a;
10 struct Foo b;
11 }u;
12};
13
14struct Bar test = {0};
15