]> git.proxmox.com Git - rustc.git/blob - src/tools/cargo/crates/rustfix/tests/everything/handle-insert-only.fixed.rs
New upstream version 1.76.0+dfsg1
[rustc.git] / src / tools / cargo / crates / rustfix / tests / everything / handle-insert-only.fixed.rs
1 fn main() {
2 // insert only fix, adds `,` to first match arm
3 // why doesnt this replace 1 with 1,?
4 match &Some(3) {
5 &None => 1,
6 &Some(x) => x,
7 };
8 }