mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
37 lines
932 B
Rust
37 lines
932 B
Rust
// run-rustfix
|
|
|
|
#![warn(clippy::unnecessary_join)]
|
|
|
|
fn main() {
|
|
// should be linted
|
|
let vector = vec!["hello", "world"];
|
|
let output = vector
|
|
.iter()
|
|
.map(|item| item.to_uppercase())
|
|
.collect::<Vec<String>>()
|
|
.join("");
|
|
println!("{}", output);
|
|
|
|
// should be linted
|
|
let vector = vec!["hello", "world"];
|
|
let output = vector
|
|
.iter()
|
|
.map(|item| item.to_uppercase())
|
|
.collect::<Vec<_>>()
|
|
.join("");
|
|
println!("{}", output);
|
|
|
|
// should not be linted
|
|
let vector = vec!["hello", "world"];
|
|
let output = vector
|
|
.iter()
|
|
.map(|item| item.to_uppercase())
|
|
.collect::<Vec<String>>()
|
|
.join("\n");
|
|
println!("{}", output);
|
|
|
|
// should not be linted
|
|
let vector = vec!["hello", "world"];
|
|
let output = vector.iter().map(|item| item.to_uppercase()).collect::<String>();
|
|
println!("{}", output);
|
|
}
|