rust/tests/ui/try-trait/try-on-option.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
217 B
Rust
Raw Normal View History

2017-09-22 23:24:06 +08:00
fn main() {}
fn foo() -> Result<u32, ()> {
let x: Option<u32> = None;
x?; //~ ERROR the `?` operator
2017-09-22 23:24:06 +08:00
Ok(22)
}
fn bar() -> u32 {
let x: Option<u32> = None;
x?; //~ ERROR the `?` operator
2017-09-22 23:24:06 +08:00
22
}