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