2019-05-05 06:02:32 -05:00
|
|
|
error[E0507]: cannot move out of static item `X`
|
2018-10-17 09:32:43 -05:00
|
|
|
--> $DIR/issue-47215-ice-from-drop-elab.rs:17:21
|
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | let mut x = X;
|
2022-12-08 11:02:54 -06:00
|
|
|
| ^ move occurs because `X` has type `AtomicUsize`, which does not implement the `Copy` trait
|
|
|
|
|
|
|
|
|
help: consider borrowing here
|
|
|
|
|
|
|
|
|
LL | let mut x = &X;
|
|
|
|
| +
|
2018-10-17 09:32:43 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0507`.
|