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

10 lines
241 B
C
Raw Normal View History

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