2022-05-05 14:12:52 +00:00
|
|
|
error: use of `char::is_digit` with literal radix of 10
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/is_digit_ascii_radix.rs:9:13
|
2022-05-05 14:12:52 +00:00
|
|
|
|
|
|
|
|
LL | let _ = c.is_digit(10);
|
|
|
|
| ^^^^^^^^^^^^^^ help: try: `c.is_ascii_digit()`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::is-digit-ascii-radix` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::is_digit_ascii_radix)]`
|
2022-05-05 14:12:52 +00:00
|
|
|
|
|
|
|
error: use of `char::is_digit` with literal radix of 16
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/is_digit_ascii_radix.rs:10:13
|
2022-05-05 14:12:52 +00:00
|
|
|
|
|
|
|
|
LL | let _ = c.is_digit(16);
|
|
|
|
| ^^^^^^^^^^^^^^ help: try: `c.is_ascii_hexdigit()`
|
|
|
|
|
|
|
|
error: use of `char::is_digit` with literal radix of 16
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/is_digit_ascii_radix.rs:11:13
|
2022-05-05 14:12:52 +00:00
|
|
|
|
|
|
|
|
LL | let _ = c.is_digit(0x10);
|
|
|
|
| ^^^^^^^^^^^^^^^^ help: try: `c.is_ascii_hexdigit()`
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|