]> git.lizzy.rs Git - rust.git/blob - src/test/ui/binding/match-pattern-simple.rs
Rollup merge of #104822 - spastorino:selctx-new-instead-of-with_query_mode, r=lcnr
[rust.git] / src / test / ui / binding / match-pattern-simple.rs
1 // run-pass
2 #![allow(dead_code)]
3
4
5 // pretty-expanded FIXME #23616
6
7 fn altsimple(f: isize) { match f { _x => () } }
8
9 pub fn main() { }