]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/issue-3131.rs
Merge commit '4c41a222ca5d1325fb4b6709395bd06e766cc042' into clippyup
[rust.git] / src / tools / rustfmt / tests / target / issue-3131.rs
1 fn main() {
2     match 3 {
3         t if match t {
4             _ => true,
5         } => {}
6         _ => {}
7     }
8 }