modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/compile/pr77754-4.c (about)

     1  /* PR c/77754 */
     2  
     3  int fn3();
     4  
     5  typedef void (*fn6) (int[][fn3 ()]);
     6  struct S {
     7    fn6 **fn7;
     8    fn6 *fn8;
     9    fn6 fn9;
    10  } s;
    11  
    12  void fn1 () {
    13    int a[10][fn3 ()];
    14    (**s.fn7) (a);
    15    (*s.fn8) (a);
    16    s.fn9 (a);
    17  }