mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 07:04:18 +00:00
9 lines
145 B
Rust
9 lines
145 B
Rust
#![warn(clippy::to_digit_is_some)]
|
|
|
|
fn main() {
|
|
let c = 'x';
|
|
let d = &c;
|
|
|
|
let _ = d.is_digit(8);
|
|
let _ = char::is_digit(c, 8);
|
|
}
|