1
1
error: 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
3
3
|
4
4
LL | u32::from_str_radix("30", 10)?;
5
5
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `"30".parse::<u32>()`
@@ -8,43 +8,43 @@ LL | u32::from_str_radix("30", 10)?;
8
8
= help: to override `-D warnings` add `#[allow(clippy::from_str_radix_10)]`
9
9
10
10
error: 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
12
12
|
13
13
LL | i64::from_str_radix("24", 10)?;
14
14
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `"24".parse::<i64>()`
15
15
16
16
error: 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
18
18
|
19
19
LL | isize::from_str_radix("100", 10)?;
20
20
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `"100".parse::<isize>()`
21
21
22
22
error: 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
24
24
|
25
25
LL | u8::from_str_radix("7", 10)?;
26
26
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `"7".parse::<u8>()`
27
27
28
28
error: 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
30
30
|
31
31
LL | u16::from_str_radix(&("10".to_owned() + "5"), 10)?;
32
32
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `("10".to_owned() + "5").parse::<u16>()`
33
33
34
34
error: 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
36
36
|
37
37
LL | i128::from_str_radix(Test + Test, 10)?;
38
38
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `(Test + Test).parse::<i128>()`
39
39
40
40
error: 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
42
42
|
43
43
LL | i32::from_str_radix(string, 10)?;
44
44
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `string.parse::<i32>()`
45
45
46
46
error: 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
48
48
|
49
49
LL | i32::from_str_radix(&stringier, 10)?;
50
50
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `stringier.parse::<i32>()`
0 commit comments