2019-09-25 07:25:31 -05:00
|
|
|
// run-rustfix
|
|
|
|
|
|
|
|
#![allow(unused, clippy::suspicious_map)]
|
|
|
|
|
2018-12-09 16:26:16 -06:00
|
|
|
use std::collections::{BTreeSet, HashMap, HashSet};
|
2018-08-31 17:14:33 -05:00
|
|
|
|
2018-09-03 22:50:24 -05:00
|
|
|
#[warn(clippy::needless_collect)]
|
2020-08-08 11:13:43 -05:00
|
|
|
#[allow(unused_variables, clippy::iter_cloned_collect, clippy::iter_next_slice)]
|
2018-08-29 22:01:24 -05:00
|
|
|
fn main() {
|
|
|
|
let sample = [1; 5];
|
|
|
|
let len = sample.iter().collect::<Vec<_>>().len();
|
|
|
|
if sample.iter().collect::<Vec<_>>().is_empty() {
|
|
|
|
// Empty
|
|
|
|
}
|
|
|
|
sample.iter().cloned().collect::<Vec<_>>().contains(&1);
|
2018-08-31 17:14:33 -05:00
|
|
|
sample.iter().map(|x| (x, x)).collect::<HashMap<_, _>>().len();
|
|
|
|
// Notice the `HashSet`--this should not be linted
|
|
|
|
sample.iter().collect::<HashSet<_>>().len();
|
|
|
|
// Neither should this
|
|
|
|
sample.iter().collect::<BTreeSet<_>>().len();
|
2018-08-29 22:01:24 -05:00
|
|
|
}
|