mirror of https://github.com/KaiserY/trpl-zh-cn
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
741 B
19 lines
741 B
$ cargo run
|
|
Compiling threads v0.1.0 (file:///projects/threads)
|
|
error[E0382]: use of moved value: `v`
|
|
--> src/main.rs:10:10
|
|
|
|
|
4 | let v = vec![1, 2, 3];
|
|
| - move occurs because `v` has type `Vec<i32>`, which does not implement the `Copy` trait
|
|
5 |
|
|
6 | let handle = thread::spawn(move || {
|
|
| ------- value moved into closure here
|
|
7 | println!("Here's a vector: {v:?}");
|
|
| - variable moved due to use in closure
|
|
...
|
|
10 | drop(v); // oh no!
|
|
| ^ value used here after move
|
|
|
|
For more information about this error, try `rustc --explain E0382`.
|
|
error: could not compile `threads` (bin "threads") due to 1 previous error
|