]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/borrowck-in-static.stderr
Auto merge of #106646 - Amanieu:ilp32-object, r=Mark-Simulacrum
[rust.git] / tests / 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 `Box<i32>`, which does not implement the `Copy` trait
8    |              |
9    |              captured by this `Fn` closure
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0507`.