[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / Parser / bad-control.c
blobb76a395508316af57b38fb5933492a98f15be490
1 /* RUN: %clang_cc1 -fsyntax-only -verify %s
2 */
3 void foo(void) {
4 break; /* expected-error {{'break' statement not in loop or switch statement}} */
7 void foo2(void) {
8 continue; /* expected-error {{'continue' statement not in loop statement}} */
11 int pr8880_9 (int first) {
12 switch(({ if (first) { first = 0; break; } 1; })) { // expected-error {{'break' statement not in loop or switch statement}}
13 case 2: return 2;
14 default: return 0;
18 void pr8880_24(void) {
19 for (({break;});;); // expected-error {{'break' statement not in loop or switch statement}}
22 void pr8880_25(void) {
23 for (({continue;});;); // expected-error {{'continue' statement not in loop statement}}