rust/tests/ui/crashes/cc_seme.rs

26 lines
455 B
Rust
Raw Normal View History

// Test for https://github.com/rust-lang/rust-clippy/issues/478
enum Baz {
2016-02-01 05:51:33 -06:00
One,
Two,
}
struct Test {
t: Option<usize>,
b: Baz,
}
2018-12-09 16:26:16 -06:00
fn main() {}
pub fn foo() {
use Baz::*;
2017-04-12 04:06:32 -05:00
let x = Test { t: Some(0), b: One };
match x {
2016-02-01 05:51:33 -06:00
Test { t: Some(_), b: One } => unreachable!(),
2018-12-09 16:26:16 -06:00
Test { t: Some(42), b: Two } => unreachable!(),
Test { t: None, .. } => unreachable!(),
Test { .. } => unreachable!(),
}
}