2021-02-12 09:53:52 +00:00
|
|
|
error: this call to `from_str_radix` can be replaced with a call to `str::parse`
|
2021-02-12 22:33:08 +00:00
|
|
|
--> $DIR/from_str_radix_10.rs:28:5
|
2021-02-11 10:46:11 +00:00
|
|
|
|
|
|
|
|
LL | u32::from_str_radix("30", 10)?;
|
2021-02-12 22:33:08 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `"30".parse::<u32>()`
|
2021-02-11 10:46:11 +00:00
|
|
|
|
|
|
|
|
= note: `-D clippy::from-str-radix-10` implied by `-D warnings`
|
|
|
|
|
2021-02-12 09:53:52 +00:00
|
|
|
error: this call to `from_str_radix` can be replaced with a call to `str::parse`
|
2021-02-12 22:33:08 +00:00
|
|
|
--> $DIR/from_str_radix_10.rs:29:5
|
2021-02-11 10:46:11 +00:00
|
|
|
|
|
|
|
|
LL | i64::from_str_radix("24", 10)?;
|
2021-02-12 22:33:08 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `"24".parse::<i64>()`
|
2021-02-11 10:46:11 +00:00
|
|
|
|
2021-02-12 09:53:52 +00:00
|
|
|
error: this call to `from_str_radix` can be replaced with a call to `str::parse`
|
2021-02-12 22:33:08 +00:00
|
|
|
--> $DIR/from_str_radix_10.rs:30:5
|
2021-02-11 10:46:11 +00:00
|
|
|
|
|
|
|
|
LL | isize::from_str_radix("100", 10)?;
|
2021-02-12 22:33:08 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `"100".parse::<isize>()`
|
2021-02-11 10:46:11 +00:00
|
|
|
|
2021-02-12 09:53:52 +00:00
|
|
|
error: this call to `from_str_radix` can be replaced with a call to `str::parse`
|
2021-02-12 22:33:08 +00:00
|
|
|
--> $DIR/from_str_radix_10.rs:31:5
|
2021-02-11 10:46:11 +00:00
|
|
|
|
|
|
|
|
LL | u8::from_str_radix("7", 10)?;
|
2021-02-12 22:33:08 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `"7".parse::<u8>()`
|
2021-02-11 10:46:11 +00:00
|
|
|
|
2021-02-12 09:53:52 +00:00
|
|
|
error: this call to `from_str_radix` can be replaced with a call to `str::parse`
|
2021-02-12 22:33:08 +00:00
|
|
|
--> $DIR/from_str_radix_10.rs:32:5
|
|
|
|
|
|
|
|
|
LL | u16::from_str_radix(&("10".to_owned() + "5"), 10)?;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `(&("10".to_owned() + "5")).parse::<u16>()`
|
|
|
|
|
|
|
|
error: this call to `from_str_radix` can be replaced with a call to `str::parse`
|
|
|
|
--> $DIR/from_str_radix_10.rs:33:5
|
|
|
|
|
|
|
|
|
LL | i128::from_str_radix(Test + Test, 10)?;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `(Test + Test).parse::<i128>()`
|
|
|
|
|
|
|
|
error: this call to `from_str_radix` can be replaced with a call to `str::parse`
|
|
|
|
--> $DIR/from_str_radix_10.rs:36:5
|
2021-02-11 10:46:11 +00:00
|
|
|
|
|
|
|
|
LL | i32::from_str_radix(string, 10)?;
|
2021-02-12 22:33:08 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `string.parse::<i32>()`
|
2021-02-11 10:46:11 +00:00
|
|
|
|
2021-02-12 22:33:08 +00:00
|
|
|
error: aborting due to 7 previous errors
|
2021-02-11 10:46:11 +00:00
|
|
|
|