]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.c-torture/compile/pr77754-1.c
48587f7ca69ef35989043033c3421bf1bc5abd05
[thirdparty/gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr77754-1.c
1 /* PR c/77754 */
2
3 int fn3();
4
5 void fn4(int[][fn3 ()]);
6
7 void fn1() {
8 void fn2(int[][fn3 ()]);
9 int a[10][fn3 ()];
10 fn4 (a);
11 }