blob: 0c244cfcf525c0b0ed03d3275858b874df37f907 [file] [log] [blame]
Chris Lattner8a87e572007-07-23 17:05:23 +00001// RUN: clang -parse-ast-check %s
2
3
4void f (int z) {
5 while (z) {
6 default: z--; // expected-error {{statement not in switch}}
7 }
8}
9