rust-clippy/tests/ui/redundant_clone.stderr

185 lines
5.1 KiB
Text
Raw Normal View History

2018-10-23 07:01:45 +00:00
error: redundant clone
2024-02-17 12:16:29 +00:00
--> tests/ui/redundant_clone.rs:15:42
2018-10-23 07:01:45 +00:00
|
2019-09-10 02:56:34 +00:00
LL | let _s = ["lorem", "ipsum"].join(" ").to_string();
| ^^^^^^^^^^^^ help: remove this
2018-10-23 07:01:45 +00:00
|
note: this value is dropped without further use
2024-02-17 12:16:29 +00:00
--> tests/ui/redundant_clone.rs:15:14
2018-10-23 07:01:45 +00:00
|
2019-09-10 02:56:34 +00:00
LL | let _s = ["lorem", "ipsum"].join(" ").to_string();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2022-09-22 16:04:22 +00:00
= note: `-D clippy::redundant-clone` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::redundant_clone)]`
2018-10-23 07:01:45 +00:00
error: redundant clone
2024-02-17 12:16:29 +00:00
--> tests/ui/redundant_clone.rs:18:15
2018-10-23 07:01:45 +00:00
|
2019-09-10 02:56:34 +00:00
LL | let _s = s.clone();
| ^^^^^^^^ help: remove this
2018-10-23 07:01:45 +00:00
|
note: this value is dropped without further use
2024-02-17 12:16:29 +00:00
--> tests/ui/redundant_clone.rs:18:14
2018-10-23 07:01:45 +00:00
|
2019-09-10 02:56:34 +00:00
LL | let _s = s.clone();
| ^
2018-10-23 07:01:45 +00:00
error: redundant clone
2024-02-17 12:16:29 +00:00
--> tests/ui/redundant_clone.rs:21:15
2018-10-23 07:01:45 +00:00
|
2019-09-10 02:56:34 +00:00
LL | let _s = s.to_string();
| ^^^^^^^^^^^^ help: remove this
2018-10-23 07:01:45 +00:00
|
note: this value is dropped without further use
2024-02-17 12:16:29 +00:00
--> tests/ui/redundant_clone.rs:21:14
2018-10-23 07:01:45 +00:00
|
2019-09-10 02:56:34 +00:00
LL | let _s = s.to_string();
| ^
2018-10-23 07:01:45 +00:00
error: redundant clone
2024-02-17 12:16:29 +00:00
--> tests/ui/redundant_clone.rs:24:15
2018-10-23 07:01:45 +00:00
|
2019-09-10 02:56:34 +00:00
LL | let _s = s.to_owned();
| ^^^^^^^^^^^ help: remove this
2018-10-23 07:01:45 +00:00
|
note: this value is dropped without further use
2024-02-17 12:16:29 +00:00
--> tests/ui/redundant_clone.rs:24:14
2018-10-23 07:01:45 +00:00
|
2019-09-10 02:56:34 +00:00
LL | let _s = s.to_owned();
| ^
2018-10-23 07:01:45 +00:00
error: redundant clone
2024-02-17 12:16:29 +00:00
--> tests/ui/redundant_clone.rs:26:42
2018-10-23 07:01:45 +00:00
|
2019-09-10 02:56:34 +00:00
LL | let _s = Path::new("/a/b/").join("c").to_owned();
| ^^^^^^^^^^^ help: remove this
2018-10-23 07:01:45 +00:00
|
note: this value is dropped without further use
2024-02-17 12:16:29 +00:00
--> tests/ui/redundant_clone.rs:26:14
2018-10-23 07:01:45 +00:00
|
2019-09-10 02:56:34 +00:00
LL | let _s = Path::new("/a/b/").join("c").to_owned();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2018-10-23 07:01:45 +00:00
2020-01-08 04:59:58 +00:00
error: redundant clone
2024-02-17 12:16:29 +00:00
--> tests/ui/redundant_clone.rs:28:42
2020-01-08 04:59:58 +00:00
|
LL | let _s = Path::new("/a/b/").join("c").to_path_buf();
| ^^^^^^^^^^^^^^ help: remove this
|
note: this value is dropped without further use
2024-02-17 12:16:29 +00:00
--> tests/ui/redundant_clone.rs:28:14
2020-01-08 04:59:58 +00:00
|
LL | let _s = Path::new("/a/b/").join("c").to_path_buf();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2018-10-23 07:01:45 +00:00
error: redundant clone
2024-02-17 12:16:29 +00:00
--> tests/ui/redundant_clone.rs:30:29
2018-10-23 07:01:45 +00:00
|
2019-09-10 02:56:34 +00:00
LL | let _s = OsString::new().to_owned();
| ^^^^^^^^^^^ help: remove this
2018-10-23 07:01:45 +00:00
|
note: this value is dropped without further use
2024-02-17 12:16:29 +00:00
--> tests/ui/redundant_clone.rs:30:14
2018-10-23 07:01:45 +00:00
|
2019-09-10 02:56:34 +00:00
LL | let _s = OsString::new().to_owned();
| ^^^^^^^^^^^^^^^
2018-10-23 07:01:45 +00:00
2020-01-08 04:59:58 +00:00
error: redundant clone
2024-02-17 12:16:29 +00:00
--> tests/ui/redundant_clone.rs:32:29
2020-01-08 04:59:58 +00:00
|
LL | let _s = OsString::new().to_os_string();
| ^^^^^^^^^^^^^^^ help: remove this
|
note: this value is dropped without further use
2024-02-17 12:16:29 +00:00
--> tests/ui/redundant_clone.rs:32:14
2020-01-08 04:59:58 +00:00
|
LL | let _s = OsString::new().to_os_string();
| ^^^^^^^^^^^^^^^
2018-10-23 07:01:45 +00:00
error: redundant clone
2024-02-17 12:16:29 +00:00
--> tests/ui/redundant_clone.rs:43:19
2018-10-23 07:01:45 +00:00
|
2019-09-10 02:56:34 +00:00
LL | let _t = tup.0.clone();
| ^^^^^^^^ help: remove this
2018-12-09 11:19:21 +00:00
|
note: this value is dropped without further use
2024-02-17 12:16:29 +00:00
--> tests/ui/redundant_clone.rs:43:14
2018-12-09 11:19:21 +00:00
|
2019-09-10 02:56:34 +00:00
LL | let _t = tup.0.clone();
| ^^^^^
2018-12-09 11:19:21 +00:00
error: redundant clone
2024-02-17 12:16:29 +00:00
--> tests/ui/redundant_clone.rs:75:25
2018-12-09 11:19:21 +00:00
|
LL | if b { (a.clone(), a.clone()) } else { (Alpha, a) }
| ^^^^^^^^ help: remove this
2018-10-23 07:01:45 +00:00
|
note: this value is dropped without further use
2024-02-17 12:16:29 +00:00
--> tests/ui/redundant_clone.rs:75:24
2018-10-23 07:01:45 +00:00
|
LL | if b { (a.clone(), a.clone()) } else { (Alpha, a) }
| ^
2018-10-23 07:01:45 +00:00
error: redundant clone
2024-02-17 12:16:29 +00:00
--> tests/ui/redundant_clone.rs:132:15
|
2019-09-10 02:56:34 +00:00
LL | let _s = s.clone();
| ^^^^^^^^ help: remove this
|
note: this value is dropped without further use
2024-02-17 12:16:29 +00:00
--> tests/ui/redundant_clone.rs:132:14
|
2019-09-10 02:56:34 +00:00
LL | let _s = s.clone();
| ^
error: redundant clone
2024-02-17 12:16:29 +00:00
--> tests/ui/redundant_clone.rs:133:15
|
2019-09-10 02:56:34 +00:00
LL | let _t = t.clone();
| ^^^^^^^^ help: remove this
|
note: this value is dropped without further use
2024-02-17 12:16:29 +00:00
--> tests/ui/redundant_clone.rs:133:14
|
2019-09-10 02:56:34 +00:00
LL | let _t = t.clone();
| ^
error: redundant clone
2024-02-17 12:16:29 +00:00
--> tests/ui/redundant_clone.rs:143:19
|
LL | let _f = f.clone();
| ^^^^^^^^ help: remove this
|
note: this value is dropped without further use
2024-02-17 12:16:29 +00:00
--> tests/ui/redundant_clone.rs:143:18
|
LL | let _f = f.clone();
| ^
error: redundant clone
2024-02-17 12:16:29 +00:00
--> tests/ui/redundant_clone.rs:155:14
|
LL | let y = x.clone().join("matthias");
| ^^^^^^^^ help: remove this
|
2020-03-12 16:25:18 +00:00
note: cloned value is neither consumed nor mutated
2024-02-17 12:16:29 +00:00
--> tests/ui/redundant_clone.rs:155:13
|
LL | let y = x.clone().join("matthias");
| ^^^^^^^^^
error: redundant clone
2024-02-17 12:16:29 +00:00
--> tests/ui/redundant_clone.rs:209:11
|
LL | foo(&x.clone(), move || {
| ^^^^^^^^ help: remove this
|
note: this value is dropped without further use
2024-02-17 12:16:29 +00:00
--> tests/ui/redundant_clone.rs:209:10
|
LL | foo(&x.clone(), move || {
| ^
error: aborting due to 15 previous errors
2018-10-23 07:01:45 +00:00