summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/is_digit_ascii_radix.stderr
blob: 28040c3a9c26db3f174bf036b5d26e180ece4607 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
error: use of `char::is_digit` with literal radix of 10
  --> $DIR/is_digit_ascii_radix.rs:9:13
   |
LL |     let _ = c.is_digit(10);
   |             ^^^^^^^^^^^^^^ help: try: `c.is_ascii_digit()`
   |
   = note: `-D clippy::is-digit-ascii-radix` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::is_digit_ascii_radix)]`

error: use of `char::is_digit` with literal radix of 16
  --> $DIR/is_digit_ascii_radix.rs:10:13
   |
LL |     let _ = c.is_digit(16);
   |             ^^^^^^^^^^^^^^ help: try: `c.is_ascii_hexdigit()`

error: use of `char::is_digit` with literal radix of 16
  --> $DIR/is_digit_ascii_radix.rs:11:13
   |
LL |     let _ = c.is_digit(0x10);
   |             ^^^^^^^^^^^^^^^^ help: try: `c.is_ascii_hexdigit()`

error: aborting due to 3 previous errors