rust-clippy/tests/cc_seme.rs

26 lines
433 B
Rust
Raw Normal View History

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