mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
12 lines
246 B
Rust
12 lines
246 B
Rust
// 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]
|
|
}
|