• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1void outside_for() {
2    for (int x=0; x<10; ++x) {}
3    continue;
4}
5
6void inside_switch() {
7    switch (1) {
8        default: continue;
9    }
10}
11
12/*%%*
13continue statement must be inside a loop
14continue statement must be inside a loop
15*%%*/
16