aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/20011008-2.c
blob: 5937bcb0e82d4d7bff6590d133cafff5b905b7af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* { dg-do run } */
/* { dg-options "-O0" } */

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);
}