mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
13 lines
314 B
Rust
13 lines
314 B
Rust
#![warn(clippy::from_iter_instead_of_collect)]
|
|
|
|
use std::collections::HashMap;
|
|
use std::iter::FromIterator;
|
|
|
|
fn main() {
|
|
let iter_expr = std::iter::repeat(5).take(5);
|
|
Vec::from_iter(iter_expr);
|
|
|
|
HashMap::<usize, &i8>::from_iter(vec![5, 5, 5, 5].iter().enumerate());
|
|
|
|
Vec::from_iter(vec![42u32]);
|
|
}
|