rust-clippy/tests/ui/repeat_once.fixed

16 lines
368 B
Rust
Raw Normal View History

2020-07-04 13:50:03 +00:00
#![warn(clippy::repeat_once)]
#[allow(unused, clippy::redundant_clone)]
2020-07-04 13:50:03 +00:00
fn main() {
const N: usize = 1;
let s = "str";
let string = "String".to_string();
let slice = [1; 5];
let a = [1; 5].to_vec();
let b = slice.to_vec();
let c = "hello".to_string();
let d = "hi".to_string();
let e = s.to_string();
let f = string.clone();
}