summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/crashes/cc_seme.rs
blob: 98588be9cf82939cf9e924ac63ad1e305dd0b90d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#[allow(dead_code)]

/// Test for https://github.com/rust-lang/rust-clippy/issues/478

enum Baz {
    One,
    Two,
}

struct Test {
    t: Option<usize>,
    b: Baz,
}

fn main() {}

pub fn foo() {
    use Baz::*;
    let x = Test { t: Some(0), b: One };

    match x {
        Test { t: Some(_), b: One } => unreachable!(),
        Test { t: Some(42), b: Two } => unreachable!(),
        Test { t: None, .. } => unreachable!(),
        Test { .. } => unreachable!(),
    }
}