2019-08-21 10:17:59 +00:00
|
|
|
error[E0268]: `continue` outside of a loop
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/closure-array-break-length.rs:2:13
|
2018-06-23 10:52:45 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | |_: [_; continue]| {};
|
2019-08-21 10:17:59 +00:00
|
|
|
| ^^^^^^^^ cannot `continue` outside of a loop
|
2018-06-23 10:52:45 +00:00
|
|
|
|
2019-08-21 10:17:59 +00:00
|
|
|
error[E0268]: `continue` outside of a loop
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/closure-array-break-length.rs:4:19
|
2018-07-01 16:24:07 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | while |_: [_; continue]| {} {}
|
2019-08-21 10:17:59 +00:00
|
|
|
| ^^^^^^^^ cannot `continue` outside of a loop
|
2018-07-01 16:24:07 +00:00
|
|
|
|
2022-11-05 01:11:50 +00:00
|
|
|
error[E0268]: `break` outside of a loop or labeled block
|
2020-04-12 04:16:38 +00:00
|
|
|
--> $DIR/closure-array-break-length.rs:6:19
|
2018-07-01 16:24:07 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | while |_: [_; break]| {} {}
|
2022-11-05 01:11:50 +00:00
|
|
|
| ^^^^^ cannot `break` outside of a loop or labeled block
|
2018-07-01 16:24:07 +00:00
|
|
|
|
2020-04-12 04:16:38 +00:00
|
|
|
error: aborting due to 3 previous errors
|
2018-06-23 10:52:45 +00:00
|
|
|
|
2020-04-12 04:16:38 +00:00
|
|
|
For more information about this error, try `rustc --explain E0268`.
|