Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
moves
/
move-nullary-fn.rs
blob: 8c7bcf395e7acab8ead681b0146254707071702a [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
// Issue #922
//@ pretty-expanded FIXME #23616
fn
f2
<
F
>(
_thing
:
F
)
where F
:
FnOnce
()
{
}
fn
f
<
F
>(
thing
:
F
)
where F
:
FnOnce
()
{
f2
(
thing
);
}
pub
fn
main
()
{
f
(||
{});
}