rust-clippy/tests/ui/cloned_instead_of_copied.stderr

53 lines
1.8 KiB
Text
Raw Normal View History

2021-04-16 16:00:08 +00:00
error: used `cloned` where `copied` could be used instead
2023-07-27 11:40:22 +00:00
--> $DIR/cloned_instead_of_copied.rs:7:24
2021-04-16 16:00:08 +00:00
|
LL | let _ = [1].iter().cloned();
| ^^^^^^ help: try: `copied`
|
= note: `-D clippy::cloned-instead-of-copied` implied by `-D warnings`
error: used `cloned` where `copied` could be used instead
2023-07-27 11:40:22 +00:00
--> $DIR/cloned_instead_of_copied.rs:8:31
2021-04-16 16:00:08 +00:00
|
LL | let _ = vec!["hi"].iter().cloned();
| ^^^^^^ help: try: `copied`
error: used `cloned` where `copied` could be used instead
2023-07-27 11:40:22 +00:00
--> $DIR/cloned_instead_of_copied.rs:9:22
2021-04-16 16:00:08 +00:00
|
LL | let _ = Some(&1).cloned();
| ^^^^^^ help: try: `copied`
error: used `cloned` where `copied` could be used instead
2023-07-27 11:40:22 +00:00
--> $DIR/cloned_instead_of_copied.rs:10:34
2021-04-16 16:00:08 +00:00
|
LL | let _ = Box::new([1].iter()).cloned();
| ^^^^^^ help: try: `copied`
error: used `cloned` where `copied` could be used instead
2023-07-27 11:40:22 +00:00
--> $DIR/cloned_instead_of_copied.rs:11:32
2021-04-16 16:00:08 +00:00
|
LL | let _ = Box::new(Some(&1)).cloned();
| ^^^^^^ help: try: `copied`
error: used `cloned` where `copied` could be used instead
2023-07-27 11:40:22 +00:00
--> $DIR/cloned_instead_of_copied.rs:27:22
|
LL | let _ = Some(&1).cloned(); // Option::copied needs 1.35
| ^^^^^^ help: try: `copied`
error: used `cloned` where `copied` could be used instead
2023-07-27 11:40:22 +00:00
--> $DIR/cloned_instead_of_copied.rs:32:24
|
LL | let _ = [1].iter().cloned(); // Iterator::copied needs 1.36
| ^^^^^^ help: try: `copied`
error: used `cloned` where `copied` could be used instead
2023-07-27 11:40:22 +00:00
--> $DIR/cloned_instead_of_copied.rs:33:22
|
LL | let _ = Some(&1).cloned();
| ^^^^^^ help: try: `copied`
error: aborting due to 8 previous errors
2021-04-16 16:00:08 +00:00