]> git.proxmox.com Git - rustc.git/blob - src/tools/clippy/tests/run-pass/single-match-else.rs
New upstream version 1.23.0+dfsg1
[rustc.git] / src / tools / clippy / tests / run-pass / single-match-else.rs
1
2
3 #![warn(single_match_else)]
4
5 fn main() {
6 let n = match (42, 43) {
7 (42, n) => n,
8 _ => panic!("typeck error"),
9 };
10 assert_eq!(n, 43);
11 }