Sign in
rust
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
try-trait
/
try-on-option.rs
blob: 8519932a634150dfc4ccbbc8adee1b24f67eff42 [
file
] [
log
] [
blame
]
fn
main
()
{}
fn
foo
()
->
Result
<
u32
,
()>
{
let
x
:
Option
<
u32
>
=
None
;
x
?;
//~ ERROR the `?` operator
Ok
(
22
)
}
fn
bar
()
->
u32
{
let
x
:
Option
<
u32
>
=
None
;
x
?;
//~ ERROR the `?` operator
22
}