rust/clippy_lints
f001 98aa0db0ac Add a lint for slice.iter().cloned().collect()
If one uses `slice.iter().cloned().collect()` to create a new `Vec`,
it should be `slice.to_owned()`.

Fix #1292
2017-02-12 17:03:09 +08:00
..
src Add a lint for slice.iter().cloned().collect() 2017-02-12 17:03:09 +08:00
Cargo.toml rustup and compile-fail -> ui test move 2017-02-07 21:05:30 +01:00
README.md Add a README for clippy_lints 2016-05-28 16:51:21 +02:00

This crate contains Clippy lints. For the main crate, check cargo.io or GitHub.