|
1 | 1 | error: implicitly cloning a `Vec` by calling `to_owned` on its dereferenced type
|
2 |
| - --> $DIR/implicit_clone.rs:65:17 |
| 2 | + --> $DIR/implicit_clone.rs:65:13 |
3 | 3 | |
|
4 | 4 | LL | let _ = vec.to_owned();
|
5 |
| - | ^^^^^^^^ help: consider using: `clone` |
| 5 | + | ^^^^^^^^^^^^^^ help: consider using: `vec.clone()` |
6 | 6 | |
|
7 | 7 | = note: `-D clippy::implicit-clone` implied by `-D warnings`
|
8 | 8 |
|
9 | 9 | error: implicitly cloning a `Vec` by calling `to_vec` on its dereferenced type
|
10 |
| - --> $DIR/implicit_clone.rs:66:17 |
| 10 | + --> $DIR/implicit_clone.rs:66:13 |
11 | 11 | |
|
12 | 12 | LL | let _ = vec.to_vec();
|
13 |
| - | ^^^^^^ help: consider using: `clone` |
| 13 | + | ^^^^^^^^^^^^ help: consider using: `vec.clone()` |
14 | 14 |
|
15 | 15 | error: implicitly cloning a `Vec` by calling `to_owned` on its dereferenced type
|
16 |
| - --> $DIR/implicit_clone.rs:70:21 |
| 16 | + --> $DIR/implicit_clone.rs:70:13 |
17 | 17 | |
|
18 | 18 | LL | let _ = vec_ref.to_owned();
|
19 |
| - | ^^^^^^^^ help: consider using: `clone` |
| 19 | + | ^^^^^^^^^^^^^^^^^^ help: consider using: `vec_ref.clone()` |
20 | 20 |
|
21 | 21 | error: implicitly cloning a `Vec` by calling `to_vec` on its dereferenced type
|
22 |
| - --> $DIR/implicit_clone.rs:71:21 |
| 22 | + --> $DIR/implicit_clone.rs:71:13 |
23 | 23 | |
|
24 | 24 | LL | let _ = vec_ref.to_vec();
|
25 |
| - | ^^^^^^ help: consider using: `clone` |
| 25 | + | ^^^^^^^^^^^^^^^^ help: consider using: `vec_ref.clone()` |
26 | 26 |
|
27 | 27 | error: implicitly cloning a `String` by calling `to_owned` on its dereferenced type
|
28 |
| - --> $DIR/implicit_clone.rs:83:17 |
| 28 | + --> $DIR/implicit_clone.rs:83:13 |
29 | 29 | |
|
30 | 30 | LL | let _ = str.to_owned();
|
31 |
| - | ^^^^^^^^ help: consider using: `clone` |
| 31 | + | ^^^^^^^^^^^^^^ help: consider using: `str.clone()` |
32 | 32 |
|
33 | 33 | error: implicitly cloning a `Kitten` by calling `to_owned` on its dereferenced type
|
34 |
| - --> $DIR/implicit_clone.rs:87:20 |
| 34 | + --> $DIR/implicit_clone.rs:87:13 |
35 | 35 | |
|
36 | 36 | LL | let _ = kitten.to_owned();
|
37 |
| - | ^^^^^^^^ help: consider using: `clone` |
| 37 | + | ^^^^^^^^^^^^^^^^^ help: consider using: `kitten.clone()` |
38 | 38 |
|
39 | 39 | error: implicitly cloning a `PathBuf` by calling `to_owned` on its dereferenced type
|
40 |
| - --> $DIR/implicit_clone.rs:97:21 |
| 40 | + --> $DIR/implicit_clone.rs:97:13 |
41 | 41 | |
|
42 | 42 | LL | let _ = pathbuf.to_owned();
|
43 |
| - | ^^^^^^^^ help: consider using: `clone` |
| 43 | + | ^^^^^^^^^^^^^^^^^^ help: consider using: `pathbuf.clone()` |
44 | 44 |
|
45 | 45 | error: implicitly cloning a `PathBuf` by calling `to_path_buf` on its dereferenced type
|
46 |
| - --> $DIR/implicit_clone.rs:98:21 |
| 46 | + --> $DIR/implicit_clone.rs:98:13 |
47 | 47 | |
|
48 | 48 | LL | let _ = pathbuf.to_path_buf();
|
49 |
| - | ^^^^^^^^^^^ help: consider using: `clone` |
| 49 | + | ^^^^^^^^^^^^^^^^^^^^^ help: consider using: `pathbuf.clone()` |
50 | 50 |
|
51 | 51 | error: implicitly cloning a `OsString` by calling `to_owned` on its dereferenced type
|
52 |
| - --> $DIR/implicit_clone.rs:101:23 |
| 52 | + --> $DIR/implicit_clone.rs:101:13 |
53 | 53 | |
|
54 | 54 | LL | let _ = os_string.to_owned();
|
55 |
| - | ^^^^^^^^ help: consider using: `clone` |
| 55 | + | ^^^^^^^^^^^^^^^^^^^^ help: consider using: `os_string.clone()` |
56 | 56 |
|
57 | 57 | error: implicitly cloning a `OsString` by calling `to_os_string` on its dereferenced type
|
58 |
| - --> $DIR/implicit_clone.rs:102:23 |
| 58 | + --> $DIR/implicit_clone.rs:102:13 |
59 | 59 | |
|
60 | 60 | LL | let _ = os_string.to_os_string();
|
61 |
| - | ^^^^^^^^^^^^ help: consider using: `clone` |
| 61 | + | ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `os_string.clone()` |
62 | 62 |
|
63 |
| -error: aborting due to 10 previous errors |
| 63 | +error: implicitly cloning a `PathBuf` by calling `to_path_buf` on its dereferenced type |
| 64 | + --> $DIR/implicit_clone.rs:113:13 |
| 65 | + | |
| 66 | +LL | let _ = pathbuf_ref.to_path_buf(); |
| 67 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `(*pathbuf_ref).clone()` |
| 68 | + |
| 69 | +error: implicitly cloning a `PathBuf` by calling `to_path_buf` on its dereferenced type |
| 70 | + --> $DIR/implicit_clone.rs:116:13 |
| 71 | + | |
| 72 | +LL | let _ = pathbuf_ref.to_path_buf(); |
| 73 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `(**pathbuf_ref).clone()` |
| 74 | + |
| 75 | +error: aborting due to 12 previous errors |
64 | 76 |
|
0 commit comments