mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
40 lines
1.4 KiB
Plaintext
40 lines
1.4 KiB
Plaintext
error[E0382]: use of moved value: `x`
|
|
--> $DIR/closure-move-spans.rs:5:13
|
|
|
|
|
LL | fn move_after_move(x: String) {
|
|
| - move occurs because `x` has type `String`, which does not implement the `Copy` trait
|
|
LL | || x;
|
|
| -- - variable moved due to use in closure
|
|
| |
|
|
| value moved into closure here
|
|
LL | let y = x;
|
|
| ^ value used here after move
|
|
|
|
error[E0382]: borrow of moved value: `x`
|
|
--> $DIR/closure-move-spans.rs:10:13
|
|
|
|
|
LL | fn borrow_after_move(x: String) {
|
|
| - move occurs because `x` has type `String`, which does not implement the `Copy` trait
|
|
LL | || x;
|
|
| -- - variable moved due to use in closure
|
|
| |
|
|
| value moved into closure here
|
|
LL | let y = &x;
|
|
| ^^ value borrowed here after move
|
|
|
|
error[E0382]: borrow of moved value: `x`
|
|
--> $DIR/closure-move-spans.rs:15:13
|
|
|
|
|
LL | fn borrow_mut_after_move(mut x: String) {
|
|
| ----- move occurs because `x` has type `String`, which does not implement the `Copy` trait
|
|
LL | || x;
|
|
| -- - variable moved due to use in closure
|
|
| |
|
|
| value moved into closure here
|
|
LL | let y = &mut x;
|
|
| ^^^^^^ value borrowed here after move
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0382`.
|