mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-02 19:53:46 +00:00
12 lines
160 B
Rust
12 lines
160 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);
|
|
}
|