Sign in
fuchsia
/
third_party
/
rust
/
eda6dc928323fcd0ac1b51cea1aa79ab17e8519d
/
.
/
tests
/
ui
/
functions-closures
/
fn-bare-coerce-to-block.rs
blob: 9c80463d59ed4a6ba4a0654bdccc3f523ec29cad [
file
] [
log
] [
blame
]
//@ run-pass
fn
bare
()
{}
fn
likes_block
<
F
>(
f
:
F
)
where F
:
FnOnce
()
{
f
()
}
pub
fn
main
()
{
likes_block
(
bare
);
}