2018-07-15 21:11:54 +00:00
error[E0225]: only auto traits can be used as additional traits in a trait object
2019-05-28 18:46:13 +00:00
--> $DIR/issue-32963.rs:8:31
2018-07-15 21:11:54 +00:00
|
2019-05-28 18:46:13 +00:00
LL | size_of_copy::<dyn Misc + Copy>();
2020-08-14 19:08:49 +00:00
| ---- ^^^^ additional non-auto trait
| |
2019-05-28 18:46:13 +00:00
| first non-auto trait
2020-08-14 19:08:49 +00:00
|
2021-10-02 00:21:01 +00:00
= help: consider creating a new trait with all of these as supertraits and using that trait here instead: `trait NewTrait: Misc + Copy {}`
2020-08-14 19:08:49 +00:00
= note: auto-traits like `Send` and `Sync` are traits that have special properties; for more information on them, visit <https://doc.rust-lang.org/reference/special-types-and-traits.html#auto-traits>
2018-07-15 21:11:54 +00:00
2020-09-02 07:40:56 +00:00
error[E0277]: the trait bound `dyn Misc: Copy` is not satisfied
2022-07-16 22:34:22 +00:00
--> $DIR/issue-32963.rs:8:20
2018-07-15 21:11:54 +00:00
|
2019-05-28 18:46:13 +00:00
LL | size_of_copy::<dyn Misc + Copy>();
2022-07-16 22:34:22 +00:00
| ^^^^^^^^^^^^^^^ the trait `Copy` is not implemented for `dyn Misc`
2021-07-31 16:26:55 +00:00
|
note: required by a bound in `size_of_copy`
--> $DIR/issue-32963.rs:5:20
|
LL | fn size_of_copy<T: Copy+?Sized>() -> usize { mem::size_of::<T>() }
| ^^^^ required by this bound in `size_of_copy`
2018-07-15 21:11:54 +00:00
2022-07-16 22:34:22 +00:00
error: aborting due to 2 previous errors
2018-07-15 21:11:54 +00:00
2019-04-17 17:26:38 +00:00
Some errors have detailed explanations: E0225, E0277.
2018-07-15 21:11:54 +00:00
For more information about an error, try `rustc --explain E0225`.