modernc.org/cc@v1.0.1/testdata/gcc-6.3.0/gcc/testsuite/gcc.c-torture/compile/switch-1.c (about)

     1  /* PR middle-end/26557.  */
     2  const int struct_test[1] = {1};
     3  void g();
     4  void f() {
     5    switch(struct_test[0]) {
     6      case 1: g();
     7    }
     8  }
     9