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