about summary refs log tree commit diff
path: root/src/test/rustfix/missing-comma-in-match.fixed
blob: d4696ab9547a6a22828a92baed4bc36a381fc83f (plain)
1
2
3
4
5
6
7
fn main() {
    match &Some(3) {
        &None => 1,
        &Some(2) => { 3 }
        _ => 2
    };
}