mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
11 lines
161 B
Rust
11 lines
161 B
Rust
//@run-rustfix
|
|
|
|
#![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);
|
|
}
|