Sign in
rust
/
rust
/
e8a00a7621606f8c4a34b679cefaaa6aecf2442e
/
.
/
tests
/
ui
/
issues
/
issue-51154.rs
blob: 12903f79010cbafd3118ed660301446afcf797a5 [
file
]
fn
foo
<
F
:
FnMut
()>()
{
let
_
:
Box
<
F
>
=
Box
::
new
(||
());
//~^ ERROR mismatched types
}
fn
main
()
{}