blob: 914393461a9142d6e61a2b99b2fc907721cff25e [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001/* RUN: clang -parse-ast-check %s
2*/
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}