]> git.lizzy.rs Git - rust.git/blob - src/test/ui/nll/issue-52663-span-decl-captured-variable.stderr
Auto merge of #60272 - Jakst:patch-1, r=Manishearth
[rust.git] / src / test / ui / nll / issue-52663-span-decl-captured-variable.stderr
1 error[E0507]: cannot move out of 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    |                          ^^^ cannot move out of captured variable in an `Fn` closure
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0507`.