summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/to_digit_is_some.fixed
blob: dc9be66d48ab435d9005a24f093a46f8bd189cd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
//@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);
}