xref: /minix3/external/bsd/llvm/dist/clang/test/Parser/bad-control.c (revision 4f89addcc198bff2fc614da2f8f4a7beb4b6cb7d)
1 /* RUN: %clang_cc1 -fsyntax-only -verify %s
2 */
3 void foo() {
4   break; /* expected-error {{'break' statement not in loop or switch statement}} */
5 }
6 
7 void foo2() {
8   continue; /* expected-error {{'continue' statement not in loop statement}} */
9 }
10