mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
3a6c6ee3d3
This is done to cover the path of the test it-self as it may not live on the same root directory as {{rust-src-base}}, which can be the case if {{rust-src-base}} is coming from a extracted dist build (cc opt-dist)
18 lines
740 B
Plaintext
18 lines
740 B
Plaintext
error[E0507]: cannot move out of `self.thread` which is behind a mutable reference
|
|
--> remapped-tests-ui/errors/remap-path-prefix-sysroot.rs:LL:COL
|
|
|
|
|
LL | self.thread.join().unwrap();
|
|
| ^^^^^^^^^^^ ------ `self.thread` moved due to this method call
|
|
| |
|
|
| move occurs because `self.thread` has type `JoinHandle<()>`, which does not implement the `Copy` trait
|
|
|
|
|
note: `JoinHandle::<T>::join` takes ownership of the receiver `self`, which moves `self.thread`
|
|
--> remapped/library/std/src/thread/mod.rs:LL:COL
|
|
|
|
|
LL | pub fn join(self) -> Result<T> {
|
|
| ^^^^
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0507`.
|