Sign in
android
/
toolchain
/
rustc
/
89a0a0cd9cbd0a0138a09bd877bbc73859a8c330
/
.
/
src
/
test
/
ui
/
closures
/
add_semicolon_non_block_closure.rs
blob: 3ae91be60c5a062eebf426cb7c526d44db5edd93 [
file
] [
log
] [
blame
]
fn
foo
(
_f
:
impl
Fn
())
{}
fn
bar
()
->
i32
{
1
}
fn
main
()
{
foo
(||
bar
())
//~^ ERROR mismatched types [E0308]
//~| HELP consider using a semicolon here
}