1 // { dg-require-effective-target alloca }
2 // { dg-require-effective-target indirect_calls }
3 /* PR c/77754 */
4 
5 int fn3();
6 
7 typedef void (*fn6) (int[][fn3 ()]);
8 fn6 **fn7;
9 
fn1()10 void fn1 () {
11   int a[10][fn3 ()];
12   (**fn7) (a);
13 }
14