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

int fn3();

void fn4(int[][fn3 ()]);

void fn1() {
  void fn2(int[][fn3 ()]);
  int a[10][fn3 ()];
  fn4 (a);
}