blob: eb5014c37e7d4a7c82674493f7b18559bb432ffd [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3struct Blend_Map_Entry {
4 union {
5 float Colour[5];
6 double Point_Slope[2];
7 } Vals;
8};
9
10void test(struct Blend_Map_Entry* Foo)
11{
12}
13