summaryrefslogtreecommitdiffstats
path: root/tests/ui/not-copy-closure.rs
blob: f6530f9a410aa09687963471ef1a45a2efa1e810 (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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]
}