summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lint/dead-code/issue-68408-false-positive.rs
blob: 7ee6b5d72889f74c84c8a8d0ccfad51298a67e4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// check-pass

// Make sure we don't have any false positives here.

#![deny(dead_code)]

enum X {
    A { _a: () },
    B { _b: () },
}
impl X {
    fn a() -> X {
        X::A { _a: () }
    }
    fn b() -> Self {
        Self::B { _b: () }
    }
}

fn main() {
    let (_, _) = (X::a(), X::b());
}