2020-09-24 12:49:22 +00:00
|
|
|
error: useless conversion to the same type: `T`
|
2020-05-17 15:36:26 +00:00
|
|
|
--> $DIR/useless_conversion.rs:6: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`
|
|
|
|
|
|
2020-01-31 19:21:10 +00:00
|
|
|
note: the lint level is defined here
|
2020-05-17 15:36:26 +00:00
|
|
|
--> $DIR/useless_conversion.rs:3:9
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2020-05-17 15:36:26 +00:00
|
|
|
LL | #![deny(clippy::useless_conversion)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-02-05 04:41:09 +00:00
|
|
|
|
2020-09-24 12:49:22 +00:00
|
|
|
error: useless conversion to the same type: `T`
|
2020-05-17 15:36:26 +00:00
|
|
|
--> $DIR/useless_conversion.rs:7: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
|
|
|
|
2020-09-24 12:49:22 +00:00
|
|
|
error: useless conversion to the same type: `i32`
|
2020-05-17 15:36:26 +00:00
|
|
|
--> $DIR/useless_conversion.rs:19: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`
|
|
|
|
|
2020-09-24 12:49:22 +00:00
|
|
|
error: useless conversion to the same type: `std::string::String`
|
2020-07-26 19:07:07 +00:00
|
|
|
--> $DIR/useless_conversion.rs:60: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()`
|
|
|
|
|
2020-09-24 12:49:22 +00:00
|
|
|
error: useless conversion to the same type: `std::string::String`
|
2020-07-26 19:07:07 +00:00
|
|
|
--> $DIR/useless_conversion.rs:61: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()`
|
|
|
|
|
2020-09-24 12:49:22 +00:00
|
|
|
error: useless conversion to the same type: `std::string::String`
|
2020-07-26 19:07:07 +00:00
|
|
|
--> $DIR/useless_conversion.rs:62: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()`
|
|
|
|
|
2020-09-24 12:49:22 +00:00
|
|
|
error: useless conversion to the same type: `std::string::String`
|
2020-07-26 19:07:07 +00:00
|
|
|
--> $DIR/useless_conversion.rs:63: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
|
|
|
|
2020-09-24 12:49:22 +00:00
|
|
|
error: useless conversion to the same type: `std::str::Lines`
|
2020-07-26 19:07:07 +00:00
|
|
|
--> $DIR/useless_conversion.rs:64: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()`
|
|
|
|
|
2020-09-24 12:49:22 +00:00
|
|
|
error: useless conversion to the same type: `std::vec::IntoIter<i32>`
|
2020-07-26 19:07:07 +00:00
|
|
|
--> $DIR/useless_conversion.rs:65: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()`
|
|
|
|
|
2020-09-24 12:49:22 +00:00
|
|
|
error: useless conversion to the same type: `std::string::String`
|
2020-07-26 19:07:07 +00:00
|
|
|
--> $DIR/useless_conversion.rs:66: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")`
|
|
|
|
|
2020-09-24 12:49:22 +00:00
|
|
|
error: useless conversion to the same type: `i32`
|
2020-08-28 14:10:16 +00:00
|
|
|
--> $DIR/useless_conversion.rs:71:13
|
|
|
|
|
|
|
|
|
LL | let _ = i32::from(a + b) * 3;
|
|
|
|
| ^^^^^^^^^^^^^^^^ help: consider removing `i32::from()`: `(a + b)`
|
|
|
|
|
|
|
|
error: aborting due to 11 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|