blob: 31d46a1bbcc80520424171c38bdab7eea425a175 [file] [log] [blame]
// RUN: clang -parse-ast-check %s
void f (int z) {
switch(z) {
default: // expected-error {{first label is here}}
default: // expected-error {{multiple default labels in one switch}}
break;
}
}