1error[E0184]: the trait `Copy` may not be implemented for this type; the type has a destructor
2  --> $DIR/exclusive-drop-and-copy.rs:3:10
3   |
4LL | #[derive(Copy, Clone)]
5   |          ^^^^ Copy not allowed on types with destructors
6   |
7   = note: this error originates in the derive macro `Copy` (in Nightly builds, run with -Z macro-backtrace for more info)
8
9error[E0184]: the trait `Copy` may not be implemented for this type; the type has a destructor
10  --> $DIR/exclusive-drop-and-copy.rs:10:10
11   |
12LL | #[derive(Copy, Clone)]
13   |          ^^^^ Copy not allowed on types with destructors
14   |
15   = note: this error originates in the derive macro `Copy` (in Nightly builds, run with -Z macro-backtrace for more info)
16
17error: aborting due to 2 previous errors
18
19For more information about this error, try `rustc --explain E0184`.
20