freebsd-nq/test/Parser/bad-control.c

10 lines
243 B
C
Raw Normal View History

2009-06-02 17:58:47 +00:00
/* RUN: clang-cc -fsyntax-only -verify %s
*/
2009-10-14 18:03:49 +00:00
void foo() {
2009-06-02 17:58:47 +00:00
break; /* expected-error {{'break' statement not in loop or switch statement}} */
}
2009-10-14 18:03:49 +00:00
void foo2() {
2009-06-02 17:58:47 +00:00
continue; /* expected-error {{'continue' statement not in loop statement}} */
}