aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr61602.c
blob: 51a675581c41e2a2f171e3a0a0008d09f81b8833 (plain)
1
2
3
4
5
6
7
8
int a;
int *b = &a, **c = &b;
int
main ()
{
  int **d = &b;
  *d = 0;
}