summaryrefslogtreecommitdiffstats
path: root/src/tools/cargo/crates/rustfix/tests/everything/handle-insert-only.rs
blob: d42a4caa8d54ff75c920b6ad7f1a02156a5b7301 (plain)
1
2
3
4
5
6
7
8
fn main() {
    // insert only fix, adds `,` to first match arm
    // why doesnt this replace 1 with 1,?
    match &Some(3) {
        &None => 1
        &Some(x) => x,
    };
}