Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
try-trait
/
try-on-option.rs
blob: 8519932a634150dfc4ccbbc8adee1b24f67eff42 [
file
] [
log
] [
blame
] [
edit
]
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
}