re PR middle-end/18493 (gcc doesn't like switch blocks without case/default labels)
[gcc.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