12 lines
163 B
Rust
12 lines
163 B
Rust
|
|
|
|
#![warn(single_match_else)]
|
|
|
|
fn main() {
|
|
let n = match (42, 43) {
|
|
(42, n) => n,
|
|
_ => panic!("typeck error"),
|
|
};
|
|
assert_eq!(n, 43);
|
|
}
|