Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
functions-closures
/
fn-bare-coerce-to-block.rs
blob: 18015a41564e2c6ce6388fc5acbb33c7db2aad7e [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
//@ pretty-expanded FIXME #23616
fn
bare
()
{}
fn
likes_block
<
F
>(
f
:
F
)
where F
:
FnOnce
()
{
f
()
}
pub
fn
main
()
{
likes_block
(
bare
);
}