]> git.lizzy.rs Git - rust.git/blob - src/test/rustfix/missing-comma-in-match.fixed
Add test for issue-69092
[rust.git] / src / test / rustfix / missing-comma-in-match.fixed
1 fn main() {
2     match &Some(3) {
3         &None => 1,
4         &Some(2) => { 3 }
5         _ => 2
6     };
7 }