rust/tests/ui/lint/dead-code/issue-68408-false-positive.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
300 B
Rust
Raw Normal View History

2022-05-10 06:52:01 -05:00
// 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());
}