2023-07-27 11:40:22 +00:00
|
|
|
//@no-rustfix: overlapping suggestions
|
2021-03-12 15:42:43 +00:00
|
|
|
#![warn(clippy::needless_for_each)]
|
2022-10-02 19:13:22 +00:00
|
|
|
#![allow(clippy::needless_return, clippy::uninlined_format_args)]
|
2021-03-12 15:42:43 +00:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let v: Vec<i32> = Vec::new();
|
|
|
|
// This is unfixable because the closure includes `return`.
|
|
|
|
v.iter().for_each(|v| {
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: needless use of `for_each`
|
|
|
|
//~| NOTE: `-D clippy::needless-for-each` implied by `-D warnings`
|
2021-03-12 15:42:43 +00:00
|
|
|
if *v == 10 {
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
println!("{}", v);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|