]> git.lizzy.rs Git - rust.git/blob - tests/ui/exclusive-drop-and-copy.stderr
Rollup merge of #107615 - notriddle:notriddle/nbsp, r=GuillaumeGomez
[rust.git] / tests / ui / exclusive-drop-and-copy.stderr
1 error[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    |
4 LL | #[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
9 error[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    |
12 LL | #[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
17 error: aborting due to 2 previous errors
18
19 For more information about this error, try `rustc --explain E0184`.