]> git.proxmox.com Git - rustc.git/blame - 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
CommitLineData
dc9dc135 1error[E0507]: cannot move out of `x`, a captured variable in an `Fn` closure
0731742a 2 --> $DIR/borrowck-in-static.rs:5:17
7cac9316 3 |
0531ce1d 4LL | let x = Box::new(0);
7cac9316 5 | - captured outer variable
532ac7d7 6LL | Box::new(|| x)
1b1a35ee 7 | ^ move occurs because `x` has type `Box<i32>`, which does not implement the `Copy` trait
7cac9316 8
041b39d2 9error: aborting due to previous error
7cac9316 10
0531ce1d 11For more information about this error, try `rustc --explain E0507`.