rust/tests/cc_seme.rs

29 lines
466 B
Rust
Raw Normal View History

#![feature(plugin)]
#![plugin(clippy)]
#[allow(dead_code)]
enum Baz {
2016-02-01 19:51:33 +08:00
One,
Two,
}
struct Test {
t: Option<usize>,
b: Baz,
}
fn main() {
use Baz::*;
2017-04-12 17:06:32 +08:00
let x = Test { t: Some(0), b: One };
match x {
2016-02-01 19:51:33 +08:00
Test { t: Some(_), b: One } => unreachable!(),
2017-04-12 17:06:32 +08:00
Test {
t: Some(42),
b: Two,
} => unreachable!(),
Test { t: None, .. } => unreachable!(),
Test { .. } => unreachable!(),
}
}