]> git.lizzy.rs Git - rust.git/blob - src/test/ui/binding/nil-pattern.rs
Rollup merge of #104822 - spastorino:selctx-new-instead-of-with_query_mode, r=lcnr
[rust.git] / src / test / ui / binding / nil-pattern.rs
1 // run-pass
2 // pretty-expanded FIXME #23616
3
4 pub fn main() { let x = (); match x { () => { } } }