summaryrefslogtreecommitdiffstats
path: root/test/Parser/bad-control.c
blob: 6e59667c354968a1ace8873ca6c921601a725562 (plain)
1
2
3
4
5
6
7
8
9
/* 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}} */
}
OpenPOWER on IntegriCloud