]> git.proxmox.com Git - rustc.git/blob - src/test/ui/nll/issue-52663-span-decl-captured-variable.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / nll / issue-52663-span-decl-captured-variable.stderr
1 error[E0507]: cannot move out of `x.0`, as `x` is a captured variable in an `Fn` closure
2 --> $DIR/issue-52663-span-decl-captured-variable.rs:8:26
3 |
4 LL | let x = (vec![22], vec![44]);
5 | - captured outer variable
6 LL | expect_fn(|| drop(x.0));
7 | ^^^ move occurs because `x.0` has type `Vec<i32>`, which does not implement the `Copy` trait
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0507`.