]> git.lizzy.rs Git - rust.git/blob - src/test/ui/nll/issue-52663-span-decl-captured-variable.stderr
Auto merge of #88988 - Mark-Simulacrum:avoid-into-ok, r=nagisa
[rust.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    |                  --------^^^-
8    |                  |       |
9    |                  |       move occurs because `x.0` has type `Vec<i32>`, which does not implement the `Copy` trait
10    |                  captured by this `Fn` closure
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0507`.