2023-07-27 06:40:22 -05:00
|
|
|
//@no-rustfix: overlapping suggestions
|
2021-03-12 09:42:43 -06:00
|
|
|
#![warn(clippy::needless_for_each)]
|
2022-10-02 14:13:22 -05:00
|
|
|
#![allow(clippy::needless_return, clippy::uninlined_format_args)]
|
2021-03-12 09:42:43 -06: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 14:35:48 -05:00
|
|
|
//~^ ERROR: needless use of `for_each`
|
|
|
|
//~| NOTE: `-D clippy::needless-for-each` implied by `-D warnings`
|
2021-03-12 09:42:43 -06:00
|
|
|
if *v == 10 {
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
println!("{}", v);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|