blob: 51d7ca71966cb87562dccfc1f9a8db6210d454c4 [file] [log] [blame]
// { dg-require-effective-target alloca }
// { 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);
}