]> git.lizzy.rs Git - rust.git/blob - tests/ui/array-slice-vec/array-break-length.stderr
Rollup merge of #104672 - Voultapher:unify-sort-modules, r=thomcc
[rust.git] / tests / ui / array-slice-vec / array-break-length.stderr
1 error[E0268]: `break` outside of a loop or labeled block
2   --> $DIR/array-break-length.rs:3:17
3    |
4 LL |         |_: [_; break]| {}
5    |                 ^^^^^ cannot `break` outside of a loop or labeled block
6
7 error[E0268]: `continue` outside of a loop
8   --> $DIR/array-break-length.rs:7:17
9    |
10 LL |         |_: [_; continue]| {}
11    |                 ^^^^^^^^ cannot `continue` 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`.