|
1 |
| -error: This call to `from_str_radix` can be shortened to a call to str::parse |
| 1 | +error: this call to `from_str_radix` can be replaced with a call to `str::parse` |
2 | 2 | --> $DIR/from_str_radix_10.rs:17:5
|
3 | 3 | |
|
4 | 4 | LL | u32::from_str_radix("30", 10)?;
|
5 | 5 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `("30").parse()`
|
6 | 6 | |
|
7 | 7 | = note: `-D clippy::from-str-radix-10` implied by `-D warnings`
|
8 | 8 |
|
9 |
| -error: This call to `from_str_radix` can be shortened to a call to str::parse |
| 9 | +error: this call to `from_str_radix` can be replaced with a call to `str::parse` |
10 | 10 | --> $DIR/from_str_radix_10.rs:18:5
|
11 | 11 | |
|
12 | 12 | LL | i64::from_str_radix("24", 10)?;
|
13 | 13 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `("24").parse()`
|
14 | 14 |
|
15 |
| -error: This call to `from_str_radix` can be shortened to a call to str::parse |
| 15 | +error: this call to `from_str_radix` can be replaced with a call to `str::parse` |
16 | 16 | --> $DIR/from_str_radix_10.rs:19:5
|
17 | 17 | |
|
18 | 18 | LL | isize::from_str_radix("100", 10)?;
|
19 | 19 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `("100").parse()`
|
20 | 20 |
|
21 |
| -error: This call to `from_str_radix` can be shortened to a call to str::parse |
| 21 | +error: this call to `from_str_radix` can be replaced with a call to `str::parse` |
22 | 22 | --> $DIR/from_str_radix_10.rs:20:5
|
23 | 23 | |
|
24 | 24 | LL | u8::from_str_radix("7", 10)?;
|
25 | 25 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `("7").parse()`
|
26 | 26 |
|
27 |
| -error: This call to `from_str_radix` can be shortened to a call to str::parse |
| 27 | +error: this call to `from_str_radix` can be replaced with a call to `str::parse` |
28 | 28 | --> $DIR/from_str_radix_10.rs:23:5
|
29 | 29 | |
|
30 | 30 | LL | i32::from_str_radix(string, 10)?;
|
|
0 commit comments