Sign in
android
/
toolchain
/
rustc
/
8cd2c99adac39159d0aec69f57fb5ce6634f8b5a
/
.
/
src
/
test
/
ui
/
suggestions
/
suggest-box.rs
blob: e680a61db3b177cc912c35927b3075019fe58dd2 [
file
]
// run-rustfix
fn
main
()
{
let
_x
:
Box
<
dyn
Fn
()
->
Result
<(),
()>>
=
||
{
//~ ERROR mismatched types
Err
(())?;
Ok
(())
};
}