]> git.lizzy.rs Git - rust.git/blob - tests/ui/redundant_clone.rs
rustfmt tests
[rust.git] / tests / ui / redundant_clone.rs
1 // Copyright 2018 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution.
3 //
4 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
5 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
7 // option. This file may not be copied, modified, or distributed
8 // except according to those terms.
9
10 #![warn(clippy::redundant_clone)]
11
12 use std::ffi::OsString;
13 use std::path::Path;
14
15 fn main() {
16     let _ = ["lorem", "ipsum"].join(" ").to_string();
17
18     let s = String::from("foo");
19     let _ = s.clone();
20
21     let s = String::from("foo");
22     let _ = s.to_string();
23
24     let s = String::from("foo");
25     let _ = s.to_owned();
26
27     let _ = Path::new("/a/b/").join("c").to_owned();
28
29     let _ = Path::new("/a/b/").join("c").to_path_buf();
30
31     let _ = OsString::new().to_owned();
32
33     let _ = OsString::new().to_os_string();
34
35     // Check that lint level works
36     #[allow(clippy::redundant_clone)]
37     let _ = String::new().to_string();
38 }
39
40 #[derive(Clone)]
41 struct Alpha;
42 fn double(a: Alpha) -> (Alpha, Alpha) {
43     if true {
44         (a.clone(), a.clone())
45     } else {
46         (Alpha, a)
47     }
48 }