Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
not-copy-closure.rs
blob: f6530f9a410aa09687963471ef1a45a2efa1e810 [
file
] [
log
] [
blame
] [
edit
]
// Check that closures do not implement `Copy` if their environment is not `Copy`.
fn
main
()
{
let
mut
a
=
5
;
let
hello
=
||
{
a
+=
1
;
};
let
b
=
hello
;
let
c
=
hello
;
//~ ERROR use of moved value: `hello` [E0382]
}