]> git.lizzy.rs Git - rust.git/blob - tests/ui/issues/issue-22426.rs
Rollup merge of #106849 - WaffleLapkin:unvec, r=Nilstrieb
[rust.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 }