This test has been automatized
[oota-llvm.git] / test / CFrontend / 2003-06-22-UnionCrash.c
1 struct Blend_Map_Entry {
2   union {
3    float Colour[5];
4    double Point_Slope[2];
5   } Vals;
6 };
7
8 void test(struct Blend_Map_Entry* Foo)
9 {
10 }
11