Sign in
android
/
toolchain
/
rustc
/
d2dbbcd40813d506244f1255bc2c84088a0197e1
/
.
/
src
/
test
/
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
};
}