blob: 1d8e635ffe442b409667757107902abf10aa2db1 (
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
|
//@ check-pass
// 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!(),
}
}
|