2018-08-08 07:28:26 -05:00
|
|
|
error[E0184]: the trait `Copy` may not be implemented for this type; the type has a destructor
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/exclusive-drop-and-copy.rs:3:10
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | #[derive(Copy, Clone)]
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^^^^ Copy not allowed on types with destructors
|
2019-12-16 07:56:47 -06:00
|
|
|
|
|
|
|
|
= note: this error originates in a derive macro (in Nightly builds, run with -Z macro-backtrace for more info)
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0184]: the trait `Copy` may not be implemented for this type; the type has a destructor
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/exclusive-drop-and-copy.rs:10:10
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | #[derive(Copy, Clone)]
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^^^^ Copy not allowed on types with destructors
|
2019-12-16 07:56:47 -06:00
|
|
|
|
|
|
|
|
= note: this error originates in a derive macro (in Nightly builds, run with -Z macro-backtrace for more info)
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0184`.
|