rust/tests/ui/map_clone.stderr

107 lines
2.9 KiB
Plaintext
Raw Normal View History

error: you seem to be using .map() to clone the contents of an iterator, consider using `.cloned()`
--> $DIR/map_clone.rs:12:5
|
2017-02-08 14:58:07 +01:00
12 | x.iter().map(|y| y.clone());
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
note: lint level defined here
--> $DIR/map_clone.rs:4:9
|
4 | #![deny(map_clone)]
| ^^^^^^^^^
= help: try
x.iter().cloned()
error: you seem to be using .map() to clone the contents of an iterator, consider using `.cloned()`
--> $DIR/map_clone.rs:14:5
|
2017-02-08 14:58:07 +01:00
14 | x.iter().map(|&y| y);
| ^^^^^^^^^^^^^^^^^^^^
|
= help: try
x.iter().cloned()
error: you seem to be using .map() to clone the contents of an iterator, consider using `.cloned()`
--> $DIR/map_clone.rs:16:5
|
2017-02-08 14:58:07 +01:00
16 | x.iter().map(|y| *y);
| ^^^^^^^^^^^^^^^^^^^^
|
= help: try
x.iter().cloned()
error: you seem to be using .map() to clone the contents of an iterator, consider using `.cloned()`
--> $DIR/map_clone.rs:18:5
|
2017-02-08 14:58:07 +01:00
18 | x.iter().map(|y| { y.clone() });
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: try
x.iter().cloned()
error: you seem to be using .map() to clone the contents of an iterator, consider using `.cloned()`
--> $DIR/map_clone.rs:20:5
|
2017-02-08 14:58:07 +01:00
20 | x.iter().map(|&y| { y });
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: try
x.iter().cloned()
error: you seem to be using .map() to clone the contents of an iterator, consider using `.cloned()`
--> $DIR/map_clone.rs:22:5
|
2017-02-08 14:58:07 +01:00
22 | x.iter().map(|y| { *y });
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: try
x.iter().cloned()
error: you seem to be using .map() to clone the contents of an iterator, consider using `.cloned()`
--> $DIR/map_clone.rs:24:5
|
2017-02-08 14:58:07 +01:00
24 | x.iter().map(Clone::clone);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: try
x.iter().cloned()
error: you seem to be using .map() to clone the contents of an Option, consider using `.cloned()`
--> $DIR/map_clone.rs:30:5
|
2017-02-08 14:58:07 +01:00
30 | x.as_ref().map(|y| y.clone());
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: try
x.as_ref().cloned()
error: you seem to be using .map() to clone the contents of an Option, consider using `.cloned()`
--> $DIR/map_clone.rs:32:5
|
2017-02-08 14:58:07 +01:00
32 | x.as_ref().map(|&y| y);
| ^^^^^^^^^^^^^^^^^^^^^^
|
= help: try
x.as_ref().cloned()
error: you seem to be using .map() to clone the contents of an Option, consider using `.cloned()`
--> $DIR/map_clone.rs:34:5
|
2017-02-08 14:58:07 +01:00
34 | x.as_ref().map(|y| *y);
| ^^^^^^^^^^^^^^^^^^^^^^
|
= help: try
x.as_ref().cloned()
error: you seem to be using .map() to clone the contents of an Option, consider using `.cloned()`
--> $DIR/map_clone.rs:90:35
|
2017-02-08 14:58:07 +01:00
90 | let _: Option<UnusualDeref> = x.as_ref().map(|y| *y);
| ^^^^^^^^^^^^^^^^^^^^^^
|
= help: try
x.as_ref().cloned()
error: aborting due to 11 previous errors