]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/source/issue-3131.rs
Rollup merge of #107166 - petrochenkov:nooptable, r=oli-obk
[rust.git] / src / tools / rustfmt / tests / source / issue-3131.rs
1 fn main() {
2     match 3 {
3         t if match t {
4             _ => true,
5         } => {},
6         _ => {}
7     }
8 }