mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 01:17:16 +00:00
12 lines
162 B
Rust
12 lines
162 B
Rust
|
//run-rustfix
|
||
|
|
||
|
#![warn(clippy::to_digit_is_some)]
|
||
|
|
||
|
fn main() {
|
||
|
let c = 'x';
|
||
|
let d = &c;
|
||
|
|
||
|
let _ = d.is_digit(10);
|
||
|
let _ = char::is_digit(c, 10);
|
||
|
}
|