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