]> git.proxmox.com Git - rustc.git/blob - src/test/ui/borrowck/borrowck-in-static.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.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 `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`.