rust/tests/ui/useless_conversion.stderr

75 lines
2.9 KiB
Text
Raw Normal View History

error: useless conversion to the same type: `T`
--> $DIR/useless_conversion.rs:6:13
2018-10-06 18:18:06 +02:00
|
2018-12-27 16:57:55 +01:00
LL | let _ = T::from(val);
2018-10-06 18:18:06 +02:00
| ^^^^^^^^^^^^ help: consider removing `T::from()`: `val`
|
2020-01-31 20:21:10 +01:00
note: the lint level is defined here
--> $DIR/useless_conversion.rs:3:9
2018-10-06 18:18:06 +02:00
|
LL | #![deny(clippy::useless_conversion)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
error: useless conversion to the same type: `T`
--> $DIR/useless_conversion.rs:7:5
2018-10-06 18:18:06 +02:00
|
2018-12-27 16:57:55 +01:00
LL | val.into()
2018-10-06 18:18:06 +02:00
| ^^^^^^^^^^ help: consider removing `.into()`: `val`
error: useless conversion to the same type: `i32`
--> $DIR/useless_conversion.rs:19:22
|
2018-12-27 16:57:55 +01:00
LL | let _: i32 = 0i32.into();
| ^^^^^^^^^^^ help: consider removing `.into()`: `0i32`
error: useless conversion to the same type: `std::string::String`
2020-07-25 16:58:22 +02:00
--> $DIR/useless_conversion.rs:60:21
|
2018-12-27 16:57:55 +01:00
LL | let _: String = "foo".to_string().into();
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `.into()`: `"foo".to_string()`
error: useless conversion to the same type: `std::string::String`
2020-07-25 16:58:22 +02:00
--> $DIR/useless_conversion.rs:61:21
|
2018-12-27 16:57:55 +01:00
LL | let _: String = From::from("foo".to_string());
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `From::from()`: `"foo".to_string()`
error: useless conversion to the same type: `std::string::String`
2020-07-25 16:58:22 +02:00
--> $DIR/useless_conversion.rs:62:13
|
2018-12-27 16:57:55 +01:00
LL | let _ = String::from("foo".to_string());
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `String::from()`: `"foo".to_string()`
error: useless conversion to the same type: `std::string::String`
2020-07-25 16:58:22 +02:00
--> $DIR/useless_conversion.rs:63:13
|
2018-12-27 16:57:55 +01:00
LL | let _ = String::from(format!("A: {:04}", 123));
2018-08-07 05:37:11 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `String::from()`: `format!("A: {:04}", 123)`
error: useless conversion to the same type: `std::str::Lines`
2020-07-25 16:58:22 +02:00
--> $DIR/useless_conversion.rs:64:13
|
2018-12-27 16:57:55 +01:00
LL | let _ = "".lines().into_iter();
2018-08-07 05:37:11 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `.into_iter()`: `"".lines()`
error: useless conversion to the same type: `std::vec::IntoIter<i32>`
2020-07-25 16:58:22 +02:00
--> $DIR/useless_conversion.rs:65:13
2018-08-07 05:37:11 +02:00
|
2018-12-27 16:57:55 +01:00
LL | let _ = vec![1, 2, 3].into_iter().into_iter();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `.into_iter()`: `vec![1, 2, 3].into_iter()`
error: useless conversion to the same type: `std::string::String`
2020-07-25 16:58:22 +02:00
--> $DIR/useless_conversion.rs:66:21
|
2018-12-27 16:57:55 +01:00
LL | let _: String = format!("Hello {}", "world").into();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `.into()`: `format!("Hello {}", "world")`
error: useless conversion to the same type: `i32`
--> $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 17:06:27 +01:00