aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/debug/pr26881.c
blob: 156a2c4550f83e1dbd710ade8fb3d211de944098 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* { dg-do compile } */
/* { dg-options "-g -O0" } */
int
main (int argc, char **argv)
{
  if (0)
    {
      static union
      {
      }
      u;
      typedef char tt;
      static tt c[8];
      return c[0] == 0x01 && c[1] == 0x02;
    }
}