1 2 3 4 5 6 7 8 9 10
// 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; } }