2017-02-05 04:41:09 +00:00
|
|
|
error: identical conversion
|
2018-08-01 14:30:44 +00:00
|
|
|
--> $DIR/identity_conversion.rs:6:13
|
2017-02-05 04:41:09 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
6 | let _ = T::from(val);
|
2017-02-05 04:41:09 +00:00
|
|
|
| ^^^^^^^^^^^^ help: consider removing `T::from()`: `val`
|
|
|
|
|
|
|
|
|
note: lint level defined here
|
2018-08-01 14:30:44 +00:00
|
|
|
--> $DIR/identity_conversion.rs:3:9
|
2017-02-05 04:41:09 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
3 | #![deny(clippy::identity_conversion)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-02-05 04:41:09 +00:00
|
|
|
|
|
|
|
error: identical conversion
|
2018-08-01 14:30:44 +00:00
|
|
|
--> $DIR/identity_conversion.rs:7:5
|
2017-02-05 04:41:09 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
7 | val.into()
|
2017-02-05 04:41:09 +00:00
|
|
|
| ^^^^^^^^^^ help: consider removing `.into()`: `val`
|
|
|
|
|
|
|
|
error: identical conversion
|
2018-08-01 14:30:44 +00:00
|
|
|
--> $DIR/identity_conversion.rs:19:22
|
2017-02-05 04:41:09 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
19 | let _: i32 = 0i32.into();
|
2017-02-05 04:41:09 +00:00
|
|
|
| ^^^^^^^^^^^ help: consider removing `.into()`: `0i32`
|
|
|
|
|
|
|
|
error: identical conversion
|
2018-08-01 14:30:44 +00:00
|
|
|
--> $DIR/identity_conversion.rs:40:21
|
2017-02-05 04:41:09 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
40 | let _: String = "foo".to_string().into();
|
2017-02-05 04:41:09 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `.into()`: `"foo".to_string()`
|
|
|
|
|
|
|
|
error: identical conversion
|
2018-08-01 14:30:44 +00:00
|
|
|
--> $DIR/identity_conversion.rs:41:21
|
2017-02-05 04:41:09 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
41 | let _: String = From::from("foo".to_string());
|
2017-02-05 04:41:09 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `From::from()`: `"foo".to_string()`
|
|
|
|
|
|
|
|
error: identical conversion
|
2018-08-01 14:30:44 +00:00
|
|
|
--> $DIR/identity_conversion.rs:42:13
|
2017-02-05 04:41:09 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
42 | let _ = String::from("foo".to_string());
|
2017-02-05 04:41:09 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `String::from()`: `"foo".to_string()`
|
|
|
|
|
2018-07-30 04:02:05 +00:00
|
|
|
error: identical conversion
|
2018-08-01 14:30:44 +00:00
|
|
|
--> $DIR/identity_conversion.rs:43:13
|
2018-07-30 04:02:05 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
43 | let _ = String::from(format!("A: {:04}", 123));
|
2018-08-07 03:37:11 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `String::from()`: `format!("A: {:04}", 123)`
|
2018-07-30 04:02:05 +00:00
|
|
|
|
|
|
|
error: identical conversion
|
2018-08-01 14:30:44 +00:00
|
|
|
--> $DIR/identity_conversion.rs:44:13
|
2018-07-30 04:02:05 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
44 | let _ = "".lines().into_iter();
|
2018-08-07 03:37:11 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `.into_iter()`: `"".lines()`
|
|
|
|
|
|
|
|
error: identical conversion
|
2018-08-01 14:30:44 +00:00
|
|
|
--> $DIR/identity_conversion.rs:45:13
|
2018-08-07 03:37:11 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
45 | let _ = vec![1, 2, 3].into_iter().into_iter();
|
2018-07-30 04:02:05 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `.into_iter()`: `vec![1, 2, 3].into_iter()`
|
|
|
|
|
2018-08-07 03:37:11 +00:00
|
|
|
error: aborting due to 9 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|