]> git.lizzy.rs Git - rust.git/blob - src/test/ui/liveness/liveness-use-after-send.stderr
Auto merge of #76499 - guswynn:priv_des, r=petrochenkov
[rust.git] / src / test / ui / liveness / liveness-use-after-send.stderr
1 error[E0382]: borrow of moved value: `message`
2   --> $DIR/liveness-use-after-send.rs:16:20
3    |
4 LL | fn test00_start(ch: Chan<Box<isize>>, message: Box<isize>, _count: Box<isize>) {
5    |                                       ------- move occurs because `message` has type `Box<isize>`, which does not implement the `Copy` trait
6 LL |     send(ch, message);
7    |              ------- value moved here
8 LL |     println!("{}", message);
9    |                    ^^^^^^^ value borrowed here after move
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0382`.