mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
22 lines
727 B
Text
22 lines
727 B
Text
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
|
|
|