]> git.proxmox.com Git - rustc.git/blob - tests/ui/issues/issue-22426.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / issues / issue-22426.rs
1 // run-pass
2 // pretty-expanded FIXME #23616
3
4 fn main() {
5 match 42 {
6 x if x < 7 => (),
7 _ => ()
8 }
9 }