rust/tests/run-pass/single-match-else.rs

12 lines
200 B
Rust

#![feature(plugin)]
#![plugin(clippy)]
#![warn(single_match_else)]
fn main() {
let n = match (42, 43) {
(42, n) => n,
_ => panic!("typeck error"),
};
assert_eq!(n, 43);
}