2017-02-05 04:41:09 +00:00
|
|
|
error: identical conversion
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/identity_conversion.rs:4:13
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let _ = T::from(val);
|
2018-10-06 16:18:06 +00:00
|
|
|
| ^^^^^^^^^^^^ help: consider removing `T::from()`: `val`
|
|
|
|
|
|
2017-02-05 04:41:09 +00:00
|
|
|
note: lint level defined here
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/identity_conversion.rs:1:9
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | #![deny(clippy::identity_conversion)]
|
2018-10-06 16:18:06 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-02-05 04:41:09 +00:00
|
|
|
|
|
|
|
error: identical conversion
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/identity_conversion.rs:5:5
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | val.into()
|
2018-10-06 16:18:06 +00:00
|
|
|
| ^^^^^^^^^^ help: consider removing `.into()`: `val`
|
2017-02-05 04:41:09 +00:00
|
|
|
|
|
|
|
error: identical conversion
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/identity_conversion.rs:17:22
|
2017-02-05 04:41:09 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let _: i32 = 0i32.into();
|
2017-02-05 04:41:09 +00:00
|
|
|
| ^^^^^^^^^^^ help: consider removing `.into()`: `0i32`
|
|
|
|
|
|
|
|
error: identical conversion
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/identity_conversion.rs:38:21
|
2017-02-05 04:41:09 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let _: String = "foo".to_string().into();
|
2017-02-05 04:41:09 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `.into()`: `"foo".to_string()`
|
|
|
|
|
|
|
|
error: identical conversion
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/identity_conversion.rs:39:21
|
2017-02-05 04:41:09 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/identity_conversion.rs:40:13
|
2017-02-05 04:41:09 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/identity_conversion.rs:41:13
|
2018-07-30 04:02:05 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/identity_conversion.rs:42:13
|
2018-07-30 04:02:05 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let _ = "".lines().into_iter();
|
2018-08-07 03:37:11 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `.into_iter()`: `"".lines()`
|
|
|
|
|
|
|
|
error: identical conversion
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/identity_conversion.rs:43:13
|
2018-08-07 03:37:11 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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-10-27 09:01:27 +00:00
|
|
|
error: identical conversion
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/identity_conversion.rs:44:21
|
2018-10-27 09:01:27 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let _: String = format!("Hello {}", "world").into();
|
2018-10-27 09:01:27 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `.into()`: `format!("Hello {}", "world")`
|
|
|
|
|
|
|
|
error: aborting due to 10 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|