summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/issue_4868.rs
blob: 763a82c3231f14db2a1f5d0418342e1ef7f157b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
enum NonAscii {
    Abcd,
    Éfgh,
}

use NonAscii::*;

fn f(x: NonAscii) -> bool {
    match x {
        Éfgh => true,
        _ => false,
    }
}

fn main() {
    dbg!(f(Abcd));
}