]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-28105.stderr
Rollup merge of #62337 - Mark-Simulacrum:fix-cpu-usage-script, r=alexcrichton
[rust.git] / src / test / ui / issues / issue-28105.stderr
1 error[E0268]: `continue` outside of loop
2   --> $DIR/issue-28105.rs:4:5
3    |
4 LL |     continue
5    |     ^^^^^^^^ cannot break outside of a loop
6
7 error[E0268]: `break` outside of loop
8   --> $DIR/issue-28105.rs:6:5
9    |
10 LL |     break
11    |     ^^^^^ cannot break outside of a loop
12
13 error: aborting due to 2 previous errors
14
15 For more information about this error, try `rustc --explain E0268`.