]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/implicit_clone.stderr
Rollup merge of #84221 - ABouttefeux:generic-arg-elision, r=estebank
[rust.git] / src / tools / clippy / tests / ui / implicit_clone.stderr
1 error: implicitly cloning a `Vec` by calling `to_owned` on its dereferenced type
2   --> $DIR/implicit_clone.rs:65:17
3    |
4 LL |     let _ = vec.to_owned();
5    |                 ^^^^^^^^ help: consider using: `clone`
6    |
7    = note: `-D clippy::implicit-clone` implied by `-D warnings`
8
9 error: implicitly cloning a `Vec` by calling `to_vec` on its dereferenced type
10   --> $DIR/implicit_clone.rs:66:17
11    |
12 LL |     let _ = vec.to_vec();
13    |                 ^^^^^^ help: consider using: `clone`
14
15 error: implicitly cloning a `Vec` by calling `to_owned` on its dereferenced type
16   --> $DIR/implicit_clone.rs:70:21
17    |
18 LL |     let _ = vec_ref.to_owned();
19    |                     ^^^^^^^^ help: consider using: `clone`
20
21 error: implicitly cloning a `Vec` by calling `to_vec` on its dereferenced type
22   --> $DIR/implicit_clone.rs:71:21
23    |
24 LL |     let _ = vec_ref.to_vec();
25    |                     ^^^^^^ help: consider using: `clone`
26
27 error: implicitly cloning a `String` by calling `to_owned` on its dereferenced type
28   --> $DIR/implicit_clone.rs:83:17
29    |
30 LL |     let _ = str.to_owned();
31    |                 ^^^^^^^^ help: consider using: `clone`
32
33 error: implicitly cloning a `Kitten` by calling `to_owned` on its dereferenced type
34   --> $DIR/implicit_clone.rs:87:20
35    |
36 LL |     let _ = kitten.to_owned();
37    |                    ^^^^^^^^ help: consider using: `clone`
38
39 error: implicitly cloning a `PathBuf` by calling `to_owned` on its dereferenced type
40   --> $DIR/implicit_clone.rs:97:21
41    |
42 LL |     let _ = pathbuf.to_owned();
43    |                     ^^^^^^^^ help: consider using: `clone`
44
45 error: implicitly cloning a `PathBuf` by calling `to_path_buf` on its dereferenced type
46   --> $DIR/implicit_clone.rs:98:21
47    |
48 LL |     let _ = pathbuf.to_path_buf();
49    |                     ^^^^^^^^^^^ help: consider using: `clone`
50
51 error: implicitly cloning a `OsString` by calling `to_owned` on its dereferenced type
52   --> $DIR/implicit_clone.rs:101:23
53    |
54 LL |     let _ = os_string.to_owned();
55    |                       ^^^^^^^^ help: consider using: `clone`
56
57 error: implicitly cloning a `OsString` by calling `to_os_string` on its dereferenced type
58   --> $DIR/implicit_clone.rs:102:23
59    |
60 LL |     let _ = os_string.to_os_string();
61    |                       ^^^^^^^^^^^^ help: consider using: `clone`
62
63 error: aborting due to 10 previous errors
64