rust/clippy_tests/examples/map_clone.stderr
Georg Brandl 6b6253016f Update stderr files for change in error reporting
rustc now (https://github.com/rust-lang/rust/issues/33525) does not
report an error count anymore, because it was not correct in many cases.
2017-05-26 16:54:07 +02:00

116 lines
3.4 KiB
Plaintext

error: you seem to be using .map() to clone the contents of an iterator, consider using `.cloned()`
--> map_clone.rs:12:5
|
12 | x.iter().map(|y| y.clone());
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `-D map-clone` implied by `-D warnings`
= help: try
x.iter().cloned()
error: you seem to be using .map() to clone the contents of an iterator, consider using `.cloned()`
--> map_clone.rs:14:5
|
14 | x.iter().map(|&y| y);
| ^^^^^^^^^^^^^^^^^^^^
|
= note: `-D map-clone` implied by `-D warnings`
= help: try
x.iter().cloned()
error: you seem to be using .map() to clone the contents of an iterator, consider using `.cloned()`
--> map_clone.rs:16:5
|
16 | x.iter().map(|y| *y);
| ^^^^^^^^^^^^^^^^^^^^
|
= note: `-D map-clone` implied by `-D warnings`
= help: try
x.iter().cloned()
error: you seem to be using .map() to clone the contents of an iterator, consider using `.cloned()`
--> map_clone.rs:18:5
|
18 | x.iter().map(|y| { y.clone() });
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `-D map-clone` implied by `-D warnings`
= help: try
x.iter().cloned()
error: you seem to be using .map() to clone the contents of an iterator, consider using `.cloned()`
--> map_clone.rs:20:5
|
20 | x.iter().map(|&y| { y });
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `-D map-clone` implied by `-D warnings`
= help: try
x.iter().cloned()
error: you seem to be using .map() to clone the contents of an iterator, consider using `.cloned()`
--> map_clone.rs:22:5
|
22 | x.iter().map(|y| { *y });
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `-D map-clone` implied by `-D warnings`
= help: try
x.iter().cloned()
error: you seem to be using .map() to clone the contents of an iterator, consider using `.cloned()`
--> map_clone.rs:24:5
|
24 | x.iter().map(Clone::clone);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `-D map-clone` implied by `-D warnings`
= help: try
x.iter().cloned()
error: you seem to be using .map() to clone the contents of an Option, consider using `.cloned()`
--> map_clone.rs:30:5
|
30 | x.as_ref().map(|y| y.clone());
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `-D map-clone` implied by `-D warnings`
= help: try
x.as_ref().cloned()
error: you seem to be using .map() to clone the contents of an Option, consider using `.cloned()`
--> map_clone.rs:32:5
|
32 | x.as_ref().map(|&y| y);
| ^^^^^^^^^^^^^^^^^^^^^^
|
= note: `-D map-clone` implied by `-D warnings`
= help: try
x.as_ref().cloned()
error: you seem to be using .map() to clone the contents of an Option, consider using `.cloned()`
--> map_clone.rs:34:5
|
34 | x.as_ref().map(|y| *y);
| ^^^^^^^^^^^^^^^^^^^^^^
|
= note: `-D map-clone` implied by `-D warnings`
= help: try
x.as_ref().cloned()
error: you seem to be using .map() to clone the contents of an Option, consider using `.cloned()`
--> map_clone.rs:90:35
|
90 | let _: Option<UnusualDeref> = x.as_ref().map(|y| *y);
| ^^^^^^^^^^^^^^^^^^^^^^
|
= note: `-D map-clone` implied by `-D warnings`
= help: try
x.as_ref().cloned()
error: aborting due to previous error(s)
error: Could not compile `clippy_tests`.
To learn more, run the command again with --verbose.