mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
79 lines
2.6 KiB
Text
79 lines
2.6 KiB
Text
error: useless conversion to the same type: `T`
|
|
--> tests/ui/useless_conversion_try.rs:9:13
|
|
|
|
|
LL | let _ = T::try_from(val).unwrap();
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: consider removing `T::try_from()`
|
|
note: the lint level is defined here
|
|
--> tests/ui/useless_conversion_try.rs:1:9
|
|
|
|
|
LL | #![deny(clippy::useless_conversion)]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: useless conversion to the same type: `T`
|
|
--> tests/ui/useless_conversion_try.rs:11:5
|
|
|
|
|
LL | val.try_into().unwrap()
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
= help: consider removing `.try_into()`
|
|
|
|
error: useless conversion to the same type: `std::string::String`
|
|
--> tests/ui/useless_conversion_try.rs:34:21
|
|
|
|
|
LL | let _: String = "foo".to_string().try_into().unwrap();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: consider removing `.try_into()`
|
|
|
|
error: useless conversion to the same type: `std::string::String`
|
|
--> tests/ui/useless_conversion_try.rs:36:21
|
|
|
|
|
LL | let _: String = TryFrom::try_from("foo".to_string()).unwrap();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: consider removing `TryFrom::try_from()`
|
|
|
|
error: useless conversion to the same type: `std::string::String`
|
|
--> tests/ui/useless_conversion_try.rs:38:13
|
|
|
|
|
LL | let _ = String::try_from("foo".to_string()).unwrap();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: consider removing `String::try_from()`
|
|
|
|
error: useless conversion to the same type: `std::string::String`
|
|
--> tests/ui/useless_conversion_try.rs:40:13
|
|
|
|
|
LL | let _ = String::try_from(format!("A: {:04}", 123)).unwrap();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: consider removing `String::try_from()`
|
|
|
|
error: useless conversion to the same type: `std::string::String`
|
|
--> tests/ui/useless_conversion_try.rs:42:21
|
|
|
|
|
LL | let _: String = format!("Hello {}", "world").try_into().unwrap();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: consider removing `.try_into()`
|
|
|
|
error: useless conversion to the same type: `std::string::String`
|
|
--> tests/ui/useless_conversion_try.rs:44:21
|
|
|
|
|
LL | let _: String = String::new().try_into().unwrap();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: consider removing `.try_into()`
|
|
|
|
error: useless conversion to the same type: `std::string::String`
|
|
--> tests/ui/useless_conversion_try.rs:46:27
|
|
|
|
|
LL | let _: String = match String::from("_").try_into() {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: consider removing `.try_into()`
|
|
|
|
error: aborting due to 9 previous errors
|
|
|