aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/torture/pr59338.c
blob: 481c84d4ee71b3b8817ed0232872e60601ce7ed7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* { dg-do compile } */

typedef enum
{
  XYZZY,
} enumType;

typedef struct
{
  unsigned char More : 1;
} tResp;

typedef struct
{
  enumType QueryType;
  union
    {
      tResp l[0];
    } u;
} tQResp;

void test(void)
{
  tQResp *qResp = (0);
  if (qResp->u.l[0].More == 0)
    return;
}