2
0
Fork 0
mirror of https://github.com/rust-lang/rust-clippy synced 2025-03-09 01:37:16 +00:00
rust-clippy/tests/ui/methods_unfixable.rs

11 lines
258 B
Rust

#![warn(clippy::filter_next)]
//@no-rustfix
fn main() {
issue10029();
}
pub fn issue10029() {
let iter = (0..10);
let _ = iter.filter(|_| true).next();
//~^ ERROR: called `filter(..).next()` on an `Iterator`. This is more succinctly expre
}