]> git.lizzy.rs Git - rust.git/blob - src/test/ui/borrowck/borrowck-in-static.stderr
Update tests for changes to cannot move errors
[rust.git] / src / test / ui / borrowck / borrowck-in-static.stderr
1 error[E0507]: cannot move out of `x`, a captured variable in an `Fn` closure
2   --> $DIR/borrowck-in-static.rs:5:17
3    |
4 LL |     let x = Box::new(0);
5    |         - captured outer variable
6 LL |     Box::new(|| x)
7    |                 ^ move occurs because `x` has type `std::boxed::Box<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`.