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