aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr88140.c
blob: 1a2bd327a25a163f3ce40e921b10abfeb43756bb (plain)
1
2
3
4
5
6
7
8
typedef struct {
} a;

typedef struct {
  a *b[0];
} c;

void d() { ((c *)0)->b[0] = 0; }