mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
15 lines
320 B
Rust
15 lines
320 B
Rust
|
#![warn(clippy::needless_for_each)]
|
||
|
#![allow(clippy::needless_return)]
|
||
|
|
||
|
fn main() {
|
||
|
let v: Vec<i32> = Vec::new();
|
||
|
// This is unfixable because the closure includes `return`.
|
||
|
v.iter().for_each(|v| {
|
||
|
if *v == 10 {
|
||
|
return;
|
||
|
} else {
|
||
|
println!("{}", v);
|
||
|
}
|
||
|
});
|
||
|
}
|