aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr105166.c
blob: 745af50e6627399526f51c720d17509ebbe83968 (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-do compile } */
/* { dg-additional-options "-std=gnu17" } */

int bar (foo, a)
  int (**foo) ();
  int a;
{
  (foo)[1] = bar;
  foo[1] (1);
}