OSDN Git Service

PR middle-end/20256
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / switch-8.c
1 /* PR middle-end/18493 */
2 /* { dg-do link } */
3
4 int main() {
5 goto bug;
6 switch(0) {
7 bug: return 0;
8 }
9 }
10