Sign in
android
/
toolchain
/
rustc
/
89a0a0cd9cbd0a0138a09bd877bbc73859a8c330
/
.
/
src
/
test
/
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
);
}