rust-clippy/tests/ui/unnecessary_join.fixed

35 lines
937 B
Rust
Raw Normal View History

2022-03-24 12:18:18 +00:00
#![warn(clippy::unnecessary_join)]
2023-06-06 20:56:57 +00:00
#![allow(clippy::uninlined_format_args, clippy::useless_vec)]
2022-03-24 12:18:18 +00:00
fn main() {
// should be linted
let vector = vec!["hello", "world"];
let output = vector
.iter()
.map(|item| item.to_uppercase())
.collect::<String>();
println!("{}", output);
// should be linted
let vector = vec!["hello", "world"];
let output = vector
.iter()
.map(|item| item.to_uppercase())
.collect::<String>();
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);
}