Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
inference
/
cannot-infer-closure.rs
blob: bd5d10b417342ff42205cc35280047474256e2bb [
file
] [
log
] [
blame
] [
edit
]
fn
main
()
{
let
x
=
|
a
:
(),
b
:
()|
{
Err
(
a
)?;
Ok
(
b
)
//~^ ERROR type annotations needed
};
}