]> git.lizzy.rs Git - rust.git/blob - tests/ui/redundant_clone.rs
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[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     let tup = (String::from("foo"),);
40     let _ = tup.0.clone();
41
42     let tup_ref = &(String::from("foo"),);
43     let _s = tup_ref.0.clone(); // this `.clone()` cannot be removed
44 }
45
46 #[derive(Clone)]
47 struct Alpha;
48 fn with_branch(a: Alpha, b: bool) -> (Alpha, Alpha) {
49     if b {
50         (a.clone(), a.clone())
51     } else {
52         (Alpha, a)
53     }
54 }
55
56 struct TypeWithDrop {
57     x: String,
58 }
59
60 impl Drop for TypeWithDrop {
61     fn drop(&mut self) {}
62 }
63
64 fn cannot_move_from_type_with_drop() -> String {
65     let s = TypeWithDrop { x: String::new() };
66     s.x.clone() // removing this `clone()` summons E0509
67 }