aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr67106.c
blob: 2a003e56f2e021f5be3ffaf6d83d936a1962d641 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* { dg-options "-g -fpack-struct" } */
typedef struct S S;

struct S
{
  struct
  {
    S *s;
  };
  int a;
};