]> git.lizzy.rs Git - rust.git/blob - src/test/ui/exclusive-drop-and-copy.stderr
Rollup merge of #60081 - pawroman:cleanup_unicode_script, r=varkor
[rust.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 error[E0184]: the trait `Copy` may not be implemented for this type; the type has a destructor
8   --> $DIR/exclusive-drop-and-copy.rs:10:10
9    |
10 LL | #[derive(Copy, Clone)]
11    |          ^^^^ Copy not allowed on types with destructors
12
13 error: aborting due to 2 previous errors
14
15 For more information about this error, try `rustc --explain E0184`.