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

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

error: aborting due to 3 previous errors