rust/src/test/ui/no-reuse-move-arc.stderr

26 lines
931 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0382]: use of moved value: `arc_v`
2018-12-25 09:56:47 -06:00
--> $DIR/no-reuse-move-arc.rs:12:18
2018-08-08 07:28:26 -05:00
|
LL | thread::spawn(move|| {
| ------ value moved (into closure) here
...
2019-03-09 06:03:44 -06:00
LL | assert_eq!((*arc_v)[2], 3);
2018-08-08 07:28:26 -05:00
| ^^^^^ value used here after move
|
= note: move occurs because `arc_v` has type `std::sync::Arc<std::vec::Vec<i32>>`, which does not implement the `Copy` trait
error[E0382]: use of moved value: `arc_v`
2018-12-25 09:56:47 -06:00
--> $DIR/no-reuse-move-arc.rs:14:23
2018-08-08 07:28:26 -05:00
|
LL | thread::spawn(move|| {
| ------ value moved (into closure) here
...
2019-03-09 06:03:44 -06:00
LL | println!("{:?}", *arc_v);
2018-08-08 07:28:26 -05:00
| ^^^^^ value used here after move
|
= note: move occurs because `arc_v` has type `std::sync::Arc<std::vec::Vec<i32>>`, which does not implement the `Copy` trait
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0382`.