blob: fed796cffe6f968d2a61e25085651ad15c3d5f00 [file] [log] [blame]
fn main() {
match &Some(3) {
&None => 1
&Some(2) => { 3 }
_ => 2
};
}