]> git.lizzy.rs Git - rust.git/blob - src/test/ui/nll/issue-52663-span-decl-captured-variable.stderr
Update tests for changes to cannot move errors
[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    |                          ^^^ move occurs because `x.0` has type `std::vec::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`.