Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
borrowck
/
borrowck-move-by-capture-ok.rs
blob: e7a48ebf6ca9b0cd001dc50f2e84740e24e43b27 [
file
] [
log
] [
blame
]
// run-pass
pub
fn
main
()
{
let
bar
:
Box
<
_
>
=
Box
::
new
(
3
);
let
h
=
||
->
isize
{
*
bar
};
assert_eq
!(
h
(),
3
);
}