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