11error: this call to `from_str_radix` can be replaced with a call to `str::parse`
2- --> tests/ui/from_str_radix_10.rs:29 :5
2+ --> tests/ui/from_str_radix_10.rs:28 :5
33 |
44LL | u32::from_str_radix("30", 10)?;
55 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `"30".parse::<u32>()`
@@ -8,43 +8,43 @@ LL | u32::from_str_radix("30", 10)?;
88 = help: to override `-D warnings` add `#[allow(clippy::from_str_radix_10)]`
99
1010error: this call to `from_str_radix` can be replaced with a call to `str::parse`
11- --> tests/ui/from_str_radix_10.rs:32 :5
11+ --> tests/ui/from_str_radix_10.rs:31 :5
1212 |
1313LL | i64::from_str_radix("24", 10)?;
1414 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `"24".parse::<i64>()`
1515
1616error: this call to `from_str_radix` can be replaced with a call to `str::parse`
17- --> tests/ui/from_str_radix_10.rs:34 :5
17+ --> tests/ui/from_str_radix_10.rs:33 :5
1818 |
1919LL | isize::from_str_radix("100", 10)?;
2020 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `"100".parse::<isize>()`
2121
2222error: this call to `from_str_radix` can be replaced with a call to `str::parse`
23- --> tests/ui/from_str_radix_10.rs:36 :5
23+ --> tests/ui/from_str_radix_10.rs:35 :5
2424 |
2525LL | u8::from_str_radix("7", 10)?;
2626 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `"7".parse::<u8>()`
2727
2828error: this call to `from_str_radix` can be replaced with a call to `str::parse`
29- --> tests/ui/from_str_radix_10.rs:38 :5
29+ --> tests/ui/from_str_radix_10.rs:37 :5
3030 |
3131LL | u16::from_str_radix(&("10".to_owned() + "5"), 10)?;
3232 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `("10".to_owned() + "5").parse::<u16>()`
3333
3434error: this call to `from_str_radix` can be replaced with a call to `str::parse`
35- --> tests/ui/from_str_radix_10.rs:40 :5
35+ --> tests/ui/from_str_radix_10.rs:39 :5
3636 |
3737LL | i128::from_str_radix(Test + Test, 10)?;
3838 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `(Test + Test).parse::<i128>()`
3939
4040error: this call to `from_str_radix` can be replaced with a call to `str::parse`
41- --> tests/ui/from_str_radix_10.rs:44 :5
41+ --> tests/ui/from_str_radix_10.rs:43 :5
4242 |
4343LL | i32::from_str_radix(string, 10)?;
4444 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `string.parse::<i32>()`
4545
4646error: this call to `from_str_radix` can be replaced with a call to `str::parse`
47- --> tests/ui/from_str_radix_10.rs:48 :5
47+ --> tests/ui/from_str_radix_10.rs:47 :5
4848 |
4949LL | i32::from_str_radix(&stringier, 10)?;
5050 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `stringier.parse::<i32>()`
0 commit comments