2018-10-23 02:01:45 -05:00
|
|
|
error: redundant clone
|
2023-05-31 12:47:10 -05:00
|
|
|
--> $DIR/redundant_clone.rs:16:42
|
2018-10-23 02:01:45 -05:00
|
|
|
|
|
2019-09-09 21:56:34 -05:00
|
|
|
LL | let _s = ["lorem", "ipsum"].join(" ").to_string();
|
|
|
|
| ^^^^^^^^^^^^ help: remove this
|
2018-10-23 02:01:45 -05:00
|
|
|
|
|
|
|
|
note: this value is dropped without further use
|
2023-05-31 12:47:10 -05:00
|
|
|
--> $DIR/redundant_clone.rs:16:14
|
2018-10-23 02:01:45 -05:00
|
|
|
|
|
2019-09-09 21:56:34 -05:00
|
|
|
LL | let _s = ["lorem", "ipsum"].join(" ").to_string();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-09-22 11:04:22 -05:00
|
|
|
= note: `-D clippy::redundant-clone` implied by `-D warnings`
|
2018-10-23 02:01:45 -05:00
|
|
|
|
|
|
|
error: redundant clone
|
2023-05-31 12:47:10 -05:00
|
|
|
--> $DIR/redundant_clone.rs:19:15
|
2018-10-23 02:01:45 -05:00
|
|
|
|
|
2019-09-09 21:56:34 -05:00
|
|
|
LL | let _s = s.clone();
|
|
|
|
| ^^^^^^^^ help: remove this
|
2018-10-23 02:01:45 -05:00
|
|
|
|
|
|
|
|
note: this value is dropped without further use
|
2023-05-31 12:47:10 -05:00
|
|
|
--> $DIR/redundant_clone.rs:19:14
|
2018-10-23 02:01:45 -05:00
|
|
|
|
|
2019-09-09 21:56:34 -05:00
|
|
|
LL | let _s = s.clone();
|
|
|
|
| ^
|
2018-10-23 02:01:45 -05:00
|
|
|
|
|
|
|
error: redundant clone
|
2023-05-31 12:47:10 -05:00
|
|
|
--> $DIR/redundant_clone.rs:22:15
|
2018-10-23 02:01:45 -05:00
|
|
|
|
|
2019-09-09 21:56:34 -05:00
|
|
|
LL | let _s = s.to_string();
|
|
|
|
| ^^^^^^^^^^^^ help: remove this
|
2018-10-23 02:01:45 -05:00
|
|
|
|
|
|
|
|
note: this value is dropped without further use
|
2023-05-31 12:47:10 -05:00
|
|
|
--> $DIR/redundant_clone.rs:22:14
|
2018-10-23 02:01:45 -05:00
|
|
|
|
|
2019-09-09 21:56:34 -05:00
|
|
|
LL | let _s = s.to_string();
|
|
|
|
| ^
|
2018-10-23 02:01:45 -05:00
|
|
|
|
|
|
|
error: redundant clone
|
2023-05-31 12:47:10 -05:00
|
|
|
--> $DIR/redundant_clone.rs:25:15
|
2018-10-23 02:01:45 -05:00
|
|
|
|
|
2019-09-09 21:56:34 -05:00
|
|
|
LL | let _s = s.to_owned();
|
|
|
|
| ^^^^^^^^^^^ help: remove this
|
2018-10-23 02:01:45 -05:00
|
|
|
|
|
|
|
|
note: this value is dropped without further use
|
2023-05-31 12:47:10 -05:00
|
|
|
--> $DIR/redundant_clone.rs:25:14
|
2018-10-23 02:01:45 -05:00
|
|
|
|
|
2019-09-09 21:56:34 -05:00
|
|
|
LL | let _s = s.to_owned();
|
|
|
|
| ^
|
2018-10-23 02:01:45 -05:00
|
|
|
|
|
|
|
error: redundant clone
|
2023-05-31 12:47:10 -05:00
|
|
|
--> $DIR/redundant_clone.rs:27:42
|
2018-10-23 02:01:45 -05:00
|
|
|
|
|
2019-09-09 21:56:34 -05:00
|
|
|
LL | let _s = Path::new("/a/b/").join("c").to_owned();
|
|
|
|
| ^^^^^^^^^^^ help: remove this
|
2018-10-23 02:01:45 -05:00
|
|
|
|
|
|
|
|
note: this value is dropped without further use
|
2023-05-31 12:47:10 -05:00
|
|
|
--> $DIR/redundant_clone.rs:27:14
|
2018-10-23 02:01:45 -05:00
|
|
|
|
|
2019-09-09 21:56:34 -05:00
|
|
|
LL | let _s = Path::new("/a/b/").join("c").to_owned();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-10-23 02:01:45 -05:00
|
|
|
|
2020-01-07 22:59:58 -06:00
|
|
|
error: redundant clone
|
2023-05-31 12:47:10 -05:00
|
|
|
--> $DIR/redundant_clone.rs:29:42
|
2020-01-07 22:59:58 -06:00
|
|
|
|
|
|
|
|
LL | let _s = Path::new("/a/b/").join("c").to_path_buf();
|
|
|
|
| ^^^^^^^^^^^^^^ help: remove this
|
|
|
|
|
|
|
|
|
note: this value is dropped without further use
|
2023-05-31 12:47:10 -05:00
|
|
|
--> $DIR/redundant_clone.rs:29:14
|
2020-01-07 22:59:58 -06:00
|
|
|
|
|
|
|
|
LL | let _s = Path::new("/a/b/").join("c").to_path_buf();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2018-10-23 02:01:45 -05:00
|
|
|
error: redundant clone
|
2023-05-31 12:47:10 -05:00
|
|
|
--> $DIR/redundant_clone.rs:31:29
|
2018-10-23 02:01:45 -05:00
|
|
|
|
|
2019-09-09 21:56:34 -05:00
|
|
|
LL | let _s = OsString::new().to_owned();
|
|
|
|
| ^^^^^^^^^^^ help: remove this
|
2018-10-23 02:01:45 -05:00
|
|
|
|
|
|
|
|
note: this value is dropped without further use
|
2023-05-31 12:47:10 -05:00
|
|
|
--> $DIR/redundant_clone.rs:31:14
|
2018-10-23 02:01:45 -05:00
|
|
|
|
|
2019-09-09 21:56:34 -05:00
|
|
|
LL | let _s = OsString::new().to_owned();
|
|
|
|
| ^^^^^^^^^^^^^^^
|
2018-10-23 02:01:45 -05:00
|
|
|
|
2020-01-07 22:59:58 -06:00
|
|
|
error: redundant clone
|
2023-05-31 12:47:10 -05:00
|
|
|
--> $DIR/redundant_clone.rs:33:29
|
2020-01-07 22:59:58 -06:00
|
|
|
|
|
|
|
|
LL | let _s = OsString::new().to_os_string();
|
|
|
|
| ^^^^^^^^^^^^^^^ help: remove this
|
|
|
|
|
|
|
|
|
note: this value is dropped without further use
|
2023-05-31 12:47:10 -05:00
|
|
|
--> $DIR/redundant_clone.rs:33:14
|
2020-01-07 22:59:58 -06:00
|
|
|
|
|
|
|
|
LL | let _s = OsString::new().to_os_string();
|
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
2018-10-23 02:01:45 -05:00
|
|
|
error: redundant clone
|
2023-05-31 12:47:10 -05:00
|
|
|
--> $DIR/redundant_clone.rs:44:19
|
2018-10-23 02:01:45 -05:00
|
|
|
|
|
2019-09-09 21:56:34 -05:00
|
|
|
LL | let _t = tup.0.clone();
|
|
|
|
| ^^^^^^^^ help: remove this
|
2018-12-09 05:19:21 -06:00
|
|
|
|
|
|
|
|
note: this value is dropped without further use
|
2023-05-31 12:47:10 -05:00
|
|
|
--> $DIR/redundant_clone.rs:44:14
|
2018-12-09 05:19:21 -06:00
|
|
|
|
|
2019-09-09 21:56:34 -05:00
|
|
|
LL | let _t = tup.0.clone();
|
|
|
|
| ^^^^^
|
2018-12-09 05:19:21 -06:00
|
|
|
|
|
|
|
error: redundant clone
|
2023-05-31 12:47:10 -05:00
|
|
|
--> $DIR/redundant_clone.rs:76:25
|
2018-12-09 05:19:21 -06:00
|
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
LL | if b { (a.clone(), a.clone()) } else { (Alpha, a) }
|
|
|
|
| ^^^^^^^^ help: remove this
|
2018-10-23 02:01:45 -05:00
|
|
|
|
|
|
|
|
note: this value is dropped without further use
|
2023-05-31 12:47:10 -05:00
|
|
|
--> $DIR/redundant_clone.rs:76:24
|
2018-10-23 02:01:45 -05:00
|
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
LL | if b { (a.clone(), a.clone()) } else { (Alpha, a) }
|
|
|
|
| ^
|
2018-10-23 02:01:45 -05:00
|
|
|
|
2019-09-16 10:50:15 -05:00
|
|
|
error: redundant clone
|
2023-05-31 12:47:10 -05:00
|
|
|
--> $DIR/redundant_clone.rs:133:15
|
2019-09-16 10:50:15 -05:00
|
|
|
|
|
2019-09-09 21:56:34 -05:00
|
|
|
LL | let _s = s.clone();
|
|
|
|
| ^^^^^^^^ help: remove this
|
2019-09-16 10:50:15 -05:00
|
|
|
|
|
|
|
|
note: this value is dropped without further use
|
2023-05-31 12:47:10 -05:00
|
|
|
--> $DIR/redundant_clone.rs:133:14
|
2019-09-16 10:50:15 -05:00
|
|
|
|
|
2019-09-09 21:56:34 -05:00
|
|
|
LL | let _s = s.clone();
|
|
|
|
| ^
|
2019-09-16 10:50:15 -05:00
|
|
|
|
|
|
|
error: redundant clone
|
2023-05-31 12:47:10 -05:00
|
|
|
--> $DIR/redundant_clone.rs:134:15
|
2019-09-16 10:50:15 -05:00
|
|
|
|
|
2019-09-09 21:56:34 -05:00
|
|
|
LL | let _t = t.clone();
|
|
|
|
| ^^^^^^^^ help: remove this
|
2019-09-16 10:50:15 -05:00
|
|
|
|
|
|
|
|
note: this value is dropped without further use
|
2023-05-31 12:47:10 -05:00
|
|
|
--> $DIR/redundant_clone.rs:134:14
|
2019-09-16 10:50:15 -05:00
|
|
|
|
|
2019-09-09 21:56:34 -05:00
|
|
|
LL | let _t = t.clone();
|
|
|
|
| ^
|
2019-09-16 10:50:15 -05:00
|
|
|
|
|
|
|
error: redundant clone
|
2023-05-31 12:47:10 -05:00
|
|
|
--> $DIR/redundant_clone.rs:144:19
|
2019-09-16 10:50:15 -05:00
|
|
|
|
|
|
|
|
LL | let _f = f.clone();
|
|
|
|
| ^^^^^^^^ help: remove this
|
|
|
|
|
|
|
|
|
note: this value is dropped without further use
|
2023-05-31 12:47:10 -05:00
|
|
|
--> $DIR/redundant_clone.rs:144:18
|
2019-09-16 10:50:15 -05:00
|
|
|
|
|
|
|
|
LL | let _f = f.clone();
|
|
|
|
| ^
|
|
|
|
|
2020-03-12 10:31:09 -05:00
|
|
|
error: redundant clone
|
2023-05-31 12:47:10 -05:00
|
|
|
--> $DIR/redundant_clone.rs:156:14
|
2020-03-12 10:31:09 -05:00
|
|
|
|
|
|
|
|
LL | let y = x.clone().join("matthias");
|
|
|
|
| ^^^^^^^^ help: remove this
|
|
|
|
|
|
2020-03-12 11:25:18 -05:00
|
|
|
note: cloned value is neither consumed nor mutated
|
2023-05-31 12:47:10 -05:00
|
|
|
--> $DIR/redundant_clone.rs:156:13
|
2020-03-12 10:31:09 -05:00
|
|
|
|
|
|
|
|
LL | let y = x.clone().join("matthias");
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
2021-11-04 07:52:36 -05:00
|
|
|
error: redundant clone
|
2023-05-31 12:47:10 -05:00
|
|
|
--> $DIR/redundant_clone.rs:210:11
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
|
LL | foo(&x.clone(), move || {
|
|
|
|
| ^^^^^^^^ help: remove this
|
|
|
|
|
|
|
|
|
note: this value is dropped without further use
|
2023-05-31 12:47:10 -05:00
|
|
|
--> $DIR/redundant_clone.rs:210:10
|
2021-11-04 07:52:36 -05:00
|
|
|
|
|
|
|
|
LL | foo(&x.clone(), move || {
|
|
|
|
| ^
|
|
|
|
|
2023-01-12 12:28:22 -06:00
|
|
|
error: aborting due to 15 previous errors
|
2018-10-23 02:01:45 -05:00
|
|
|
|