aboutsummaryrefslogtreecommitdiffstats
path: root/test/CFrontend
diff options
context:
space:
mode:
Diffstat (limited to 'test/CFrontend')
-rw-r--r--test/CFrontend/2003-06-22-UnionCrash.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/CFrontend/2003-06-22-UnionCrash.c b/test/CFrontend/2003-06-22-UnionCrash.c
new file mode 100644
index 0000000..e4fb3f0
--- /dev/null
+++ b/test/CFrontend/2003-06-22-UnionCrash.c
@@ -0,0 +1,11 @@
+struct Blend_Map_Entry {
+ union {
+ float Colour[5];
+ double Point_Slope[2];
+ } Vals;
+};
+
+void test(struct Blend_Map_Entry* Foo)
+{
+}
+