(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
c99-flex-array-2.c
       1  /* PR c/5623 */
       2  /* { dg-do compile } */
       3  /* { dg-options "-std=iso9899:1999 -pedantic-errors" } */
       4  
       5  struct blah {
       6     int   number;
       7     char  array[];
       8  };
       9  
      10  void foo(void)
      11  {
      12     struct blah b;
      13     b.array = "hi";  /* { dg-error "invalid use of flexible array member" } */
      14  }