summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/anon2.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.other/anon2.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.other/anon2.C32
1 files changed, 32 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.other/anon2.C b/gcc/testsuite/g++.old-deja/g++.other/anon2.C
new file mode 100644
index 000000000..f35d5ff31
--- /dev/null
+++ b/gcc/testsuite/g++.old-deja/g++.other/anon2.C
@@ -0,0 +1,32 @@
+// { dg-do run }
+extern "C" void abort (void);
+
+static union {
+ int x1;
+ long x2;
+ short x3;
+ long x4;
+};
+
+static union {
+ union {
+ union {
+ int z;
+ };
+ };
+ union {
+ union {
+ double d;
+ int i;
+ };
+ };
+};
+
+
+int main()
+{
+ z = 3;
+ if (i != 3)
+ abort ();
+ d = 2.5;
+}