aboutsummaryrefslogtreecommitdiffstats
path: root/test/CFrontend/2003-01-30-UnionInit.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/CFrontend/2003-01-30-UnionInit.c')
-rw-r--r--test/CFrontend/2003-01-30-UnionInit.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/CFrontend/2003-01-30-UnionInit.c b/test/CFrontend/2003-01-30-UnionInit.c
new file mode 100644
index 0000000..0542254
--- /dev/null
+++ b/test/CFrontend/2003-01-30-UnionInit.c
@@ -0,0 +1,8 @@
+
+
+union foo {
+ struct { char A, B; } X;
+ int C;
+};
+
+union foo V = { {1, 2} };