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

     1  typedef struct
     2  {
     3    char *key;
     4    char *value;
     5  } T1;
     6  
     7  typedef struct
     8  {
     9    long type;
    10    char *value;
    11  } T3;
    12  
    13  T1 a[] =
    14  {
    15    {
    16      "",
    17      ((char *)&((T3) {1, (char *) 1}))
    18    }
    19  };