--- a
+++ b/test/types-struct-named-union.c
@@ -0,0 +1,9 @@
+struct test
+{
+	int a;
+	int b;
+	union {
+		int c;
+		int d;
+	}x;
+};