Sign in
android
/
toolchain
/
rustc
/
f7ad1c480b8dc4097ef67cd82ec1c5b706e10950
/
.
/
src
/
test
/
ui
/
unsized-locals
/
box-fnonce.rs
blob: 8b2f9b4c9fcd470d3d5743d59ba6c5165b6af1c6 [
file
] [
log
] [
blame
]
// run-pass
fn
call_it
<
T
>(
f
:
Box
<
dyn
FnOnce
()
->
T
>)
->
T
{
f
()
}
fn
main
()
{
let
s
=
"hello"
.
to_owned
();
assert_eq
!(&
call_it
(
Box
::
new
(||
s
))
as
&
str
,
"hello"
);
}