rust-clippy/tests/ui/needless_for_each_unfixable.stderr

34 lines
707 B
Text
Raw Normal View History

error: needless use of `for_each`
--> $DIR/needless_for_each_unfixable.rs:8:5
|
LL | / v.iter().for_each(|v| {
LL | |
LL | |
LL | | if *v == 10 {
... |
LL | | }
LL | | });
| |_______^
|
= note: `-D clippy::needless-for-each` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::needless_for_each)]`
help: try
|
2021-08-11 14:21:33 +00:00
LL ~ for v in v.iter() {
LL +
LL +
2021-08-11 14:21:33 +00:00
LL + if *v == 10 {
LL + return;
LL + } else {
LL + println!("{}", v);
LL + }
2022-06-16 14:00:32 +00:00
LL + }
|
help: ...and replace `return` with `continue`
|
LL | continue;
2021-08-11 14:21:33 +00:00
| ~~~~~~~~
error: aborting due to previous error