]> git.lizzy.rs Git - rust.git/blob - tests/target/issue-3131.rs
fix the logic for retaining a comment before the arrow in a match
[rust.git] / tests / target / issue-3131.rs
1 fn main() {
2     match 3 {
3         t if match t {
4             _ => true,
5         } => {}
6         _ => {}
7     }
8 }