fn main() { let some_option_value: Option = None; // ANCHOR: here if let Some(x) = some_option_value else { return; }; // ANCHOR_END: here }