blob: 9c8e8b33ad68a01db66ba7984043e60b02c6c8d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#![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
}
|