blob: 31d46a1bbcc80520424171c38bdab7eea425a175 [file] [log] [blame]
Chris Lattner4b009652007-07-25 00:24:17 +00001// RUN: clang -parse-ast-check %s
2
3void f (int z) {
4 switch(z) {
5 default: // expected-error {{first label is here}}
6 default: // expected-error {{multiple default labels in one switch}}
7 break;
8 }
9}
10