rust/src/test/rustfix/missing-comma-in-match.fixed
2018-12-28 21:50:33 +01:00

7 lines
103 B
Rust

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