re PR c/77754 (internal compiler error : tree code 'call_expr' is not supported in...
[gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr77754-5.c
1 /* PR c/77754 */
2
3 int fn3();
4
5 void fn4(int[][fn3 ()]);
6 void fn4(int x[][fn3 ()])
7 {
8 }
9
10 void fn1() {
11 void fn2(int[][fn3 ()]);
12 int a[10][fn3 ()];
13 fn4 (a);
14 }