rust/src/test/rustfix/missing-comma-in-match.rs
2018-12-25 21:08:33 -07:00

7 lines
102 B
Rust

fn main() {
match &Some(3) {
&None => 1
&Some(2) => { 3 }
_ => 2
};
}