aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/20011008-2.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.9/gcc/testsuite/gcc.dg/20011008-2.c')
-rw-r--r--gcc-4.9/gcc/testsuite/gcc.dg/20011008-2.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/gcc-4.9/gcc/testsuite/gcc.dg/20011008-2.c b/gcc-4.9/gcc/testsuite/gcc.dg/20011008-2.c
new file mode 100644
index 000000000..01ff172b4
--- /dev/null
+++ b/gcc-4.9/gcc/testsuite/gcc.dg/20011008-2.c
@@ -0,0 +1,23 @@
+/* { dg-do run } */
+/* { dg-options "-O0" } */
+
+extern void abort (void);
+extern void exit (int);
+
+struct { union {int x; int y;}; int q; } b;
+union { struct {int x;}; int q; } e;
+
+main()
+{
+ b.y = 10;
+ b.x = 15;
+ if (b.y != 15)
+ abort();
+
+ e.x = 10;
+ e.q = 15;
+ if (e.x != 15)
+ abort();
+
+ exit(0);
+}