de677b993f
As per issue #54985 removes the not useful suggestion to remove asterisk in move errors. Includes minor changes to tests in the `ui` suite to account for the removed suggestion.
40 lines
1.5 KiB
Plaintext
40 lines
1.5 KiB
Plaintext
error[E0507]: cannot move out of a shared reference
|
|
--> $DIR/std-uncopyable-atomics.rs:9:13
|
|
|
|
|
LL | let x = *&x;
|
|
| ^^^
|
|
| |
|
|
| move occurs because value has type `std::sync::atomic::AtomicBool`, which does not implement the `Copy` trait
|
|
| help: consider borrowing here: `&*&x`
|
|
|
|
error[E0507]: cannot move out of a shared reference
|
|
--> $DIR/std-uncopyable-atomics.rs:11:13
|
|
|
|
|
LL | let x = *&x;
|
|
| ^^^
|
|
| |
|
|
| move occurs because value has type `std::sync::atomic::AtomicIsize`, which does not implement the `Copy` trait
|
|
| help: consider borrowing here: `&*&x`
|
|
|
|
error[E0507]: cannot move out of a shared reference
|
|
--> $DIR/std-uncopyable-atomics.rs:13:13
|
|
|
|
|
LL | let x = *&x;
|
|
| ^^^
|
|
| |
|
|
| move occurs because value has type `std::sync::atomic::AtomicUsize`, which does not implement the `Copy` trait
|
|
| help: consider borrowing here: `&*&x`
|
|
|
|
error[E0507]: cannot move out of a shared reference
|
|
--> $DIR/std-uncopyable-atomics.rs:15:13
|
|
|
|
|
LL | let x = *&x;
|
|
| ^^^
|
|
| |
|
|
| move occurs because value has type `std::sync::atomic::AtomicPtr<usize>`, which does not implement the `Copy` trait
|
|
| help: consider borrowing here: `&*&x`
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0507`.
|