]> git.proxmox.com Git - rustc.git/blob - src/test/ui/exclusive-drop-and-copy.stderr
New upstream version 1.43.0+dfsg1
[rustc.git] / src / test / 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 a derive macro (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 a derive macro (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`.