]> git.lizzy.rs Git - rust.git/blob - tests/ui/from_str_radix_10.stderr
Fixed typos and updated to matches! where applicable
[rust.git] / tests / ui / from_str_radix_10.stderr
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
3    |
4 LL |     u32::from_str_radix("30", 10)?;
5    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `("30").parse()`
6    |
7    = note: `-D clippy::from-str-radix-10` implied by `-D warnings`
8
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
11    |
12 LL |     i64::from_str_radix("24", 10)?;
13    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `("24").parse()`
14
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
17    |
18 LL |     isize::from_str_radix("100", 10)?;
19    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `("100").parse()`
20
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
23    |
24 LL |     u8::from_str_radix("7", 10)?;
25    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `("7").parse()`
26
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
29    |
30 LL |     i32::from_str_radix(string, 10)?;
31    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `(string).parse()`
32
33 error: aborting due to 5 previous errors
34