|
1 | 1 | error: this call to `from_str_radix` can be replaced with a call to `str::parse`
|
2 |
| - --> $DIR/from_str_radix_10.rs:17:5 |
| 2 | + --> $DIR/from_str_radix_10.rs:28:5 |
3 | 3 | |
|
4 | 4 | LL | u32::from_str_radix("30", 10)?;
|
5 |
| - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `("30").parse()` |
| 5 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `"30".parse::<u32>()` |
6 | 6 | |
|
7 | 7 | = note: `-D clippy::from-str-radix-10` implied by `-D warnings`
|
8 | 8 |
|
9 | 9 | error: this call to `from_str_radix` can be replaced with a call to `str::parse`
|
10 |
| - --> $DIR/from_str_radix_10.rs:18:5 |
| 10 | + --> $DIR/from_str_radix_10.rs:29:5 |
11 | 11 | |
|
12 | 12 | LL | i64::from_str_radix("24", 10)?;
|
13 |
| - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `("24").parse()` |
| 13 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `"24".parse::<i64>()` |
14 | 14 |
|
15 | 15 | error: this call to `from_str_radix` can be replaced with a call to `str::parse`
|
16 |
| - --> $DIR/from_str_radix_10.rs:19:5 |
| 16 | + --> $DIR/from_str_radix_10.rs:30:5 |
17 | 17 | |
|
18 | 18 | LL | isize::from_str_radix("100", 10)?;
|
19 |
| - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `("100").parse()` |
| 19 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `"100".parse::<isize>()` |
20 | 20 |
|
21 | 21 | error: this call to `from_str_radix` can be replaced with a call to `str::parse`
|
22 |
| - --> $DIR/from_str_radix_10.rs:20:5 |
| 22 | + --> $DIR/from_str_radix_10.rs:31:5 |
23 | 23 | |
|
24 | 24 | LL | u8::from_str_radix("7", 10)?;
|
25 |
| - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `("7").parse()` |
| 25 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `"7".parse::<u8>()` |
26 | 26 |
|
27 | 27 | error: this call to `from_str_radix` can be replaced with a call to `str::parse`
|
28 |
| - --> $DIR/from_str_radix_10.rs:23:5 |
| 28 | + --> $DIR/from_str_radix_10.rs:32:5 |
| 29 | + | |
| 30 | +LL | u16::from_str_radix(&("10".to_owned() + "5"), 10)?; |
| 31 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `(&("10".to_owned() + "5")).parse::<u16>()` |
| 32 | + |
| 33 | +error: this call to `from_str_radix` can be replaced with a call to `str::parse` |
| 34 | + --> $DIR/from_str_radix_10.rs:33:5 |
| 35 | + | |
| 36 | +LL | i128::from_str_radix(Test + Test, 10)?; |
| 37 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `(Test + Test).parse::<i128>()` |
| 38 | + |
| 39 | +error: this call to `from_str_radix` can be replaced with a call to `str::parse` |
| 40 | + --> $DIR/from_str_radix_10.rs:36:5 |
29 | 41 | |
|
30 | 42 | LL | i32::from_str_radix(string, 10)?;
|
31 |
| - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `(string).parse()` |
| 43 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `string.parse::<i32>()` |
32 | 44 |
|
33 |
| -error: aborting due to 5 previous errors |
| 45 | +error: aborting due to 7 previous errors |
34 | 46 |
|
0 commit comments