blob: 31d46a1bbcc80520424171c38bdab7eea425a175 [file] [log] [blame]
Anders Carlssonc1fcb772007-07-22 07:07:56 +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