blob: 9c8e8b33ad68a01db66ba7984043e60b02c6c8d8 [file] [log] [blame]
#![feature(try_trait)]
fn main() {}
fn foo() -> Result<u32, ()> {
let x: Option<u32> = None;
x?; //~ the trait bound
Ok(22)
}
fn bar() -> u32 {
let x: Option<u32> = None;
x?; //~ the `?` operator
22
}