]> git.lizzy.rs Git - rust.git/blob - src/test/ui/borrowck/borrowck-in-static.stderr
Sync portable-simd to rust-lang/portable-simd@72df4c45056a8bc0d1b3f06fdc828722177f0763
[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    |              ---^
8    |              |  |
9    |              |  move occurs because `x` has type `Box<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`.