blob: 6e59667c354968a1ace8873ca6c921601a725562 [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001/* RUN: clang-cc -fsyntax-only -verify %s
Reid Spencer5f016e22007-07-11 17:01:13 +00002*/
3int foo() {
4 break; /* expected-error {{'break' statement not in loop or switch statement}} */
5}
6
7int foo2() {
8 continue; /* expected-error {{'continue' statement not in loop statement}} */
9}