blob: 914393461a9142d6e61a2b99b2fc907721cff25e [file] [log] [blame]
Bill Wendlingeb2def62007-06-27 04:30:12 +00001/* RUN: clang -parse-ast-check %s
Chris Lattner33ad2ca2006-11-05 23:47:55 +00002*/
3int foo() {
Bill Wendlingeb2def62007-06-27 04:30:12 +00004 break; /* expected-error {{'break' statement not in loop or switch statement}} */
Chris Lattner33ad2ca2006-11-05 23:47:55 +00005}
6
7int foo2() {
Bill Wendlingeb2def62007-06-27 04:30:12 +00008 continue; /* expected-error {{'continue' statement not in loop statement}} */
Chris Lattner33ad2ca2006-11-05 23:47:55 +00009}