]> git.lizzy.rs Git - rust.git/blob - tests/ui/from_str_radix_10.stderr
[`excessive_bools`] lint trait functions even without bodies
[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:28:5
3    |
4 LL |     u32::from_str_radix("30", 10)?;
5    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `"30".parse::<u32>()`
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:29:5
11    |
12 LL |     i64::from_str_radix("24", 10)?;
13    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `"24".parse::<i64>()`
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:30:5
17    |
18 LL |     isize::from_str_radix("100", 10)?;
19    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `"100".parse::<isize>()`
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:31:5
23    |
24 LL |     u8::from_str_radix("7", 10)?;
25    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `"7".parse::<u8>()`
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: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
41    |
42 LL |     i32::from_str_radix(string, 10)?;
43    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `string.parse::<i32>()`
44
45 error: this call to `from_str_radix` can be replaced with a call to `str::parse`
46   --> $DIR/from_str_radix_10.rs:39:5
47    |
48 LL |     i32::from_str_radix(&stringier, 10)?;
49    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `stringier.parse::<i32>()`
50
51 error: aborting due to 8 previous errors
52