fn main() {} fn foo() -> Result { let x: Option = None; x?; //~ ERROR the `?` operator Ok(22) } fn bar() -> u32 { let x: Option = None; x?; //~ ERROR the `?` operator 22 }