mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 13:43:17 +00:00
11 lines
154 B
Rust
11 lines
154 B
Rust
|
#![warn(clippy::filter_next)]
|
||
|
|
||
|
fn main() {
|
||
|
issue10029();
|
||
|
}
|
||
|
|
||
|
pub fn issue10029() {
|
||
|
let iter = (0..10);
|
||
|
let _ = iter.filter(|_| true).next();
|
||
|
}
|