aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr77754-3.c
blob: 9fc6dc268a2b163ffdf70cf224a6f741ddc89c1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// { dg-require-effective-target indirect_calls }
/* PR c/77754 */

int fn3();

typedef void (*fn6) (int[][fn3 ()]);
fn6 **fn7;

void fn1 () {
  int a[10][fn3 ()];
  (**fn7) (a);
}