rust/tests/ui/from_iter_instead_of_collect.rs

12 lines
280 B
Rust
Raw Normal View History

#![warn(clippy::from_iter_instead_of_collect)]
use std::collections::HashMap;
use std::iter::FromIterator;
fn main() {
2020-10-01 11:04:05 -05:00
let iter_expr = std::iter::repeat(5).take(5);
2020-10-01 11:04:05 -05:00
Vec::from_iter(iter_expr);
HashMap::<usize, &i8>::from_iter(vec![5, 5, 5, 5].iter().enumerate());
}