2018-07-15 16:11:54 -05:00
|
|
|
error[E0225]: only auto traits can be used as additional traits in a trait object
|
2019-05-28 13:46:13 -05:00
|
|
|
--> $DIR/issue-32963.rs:8:31
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
2019-05-28 13:46:13 -05:00
|
|
|
LL | size_of_copy::<dyn Misc + Copy>();
|
|
|
|
| ---- ^^^^
|
|
|
|
| | |
|
|
|
|
| | additional non-auto trait
|
|
|
|
| | trait alias used in trait object type (additional use)
|
|
|
|
| first non-auto trait
|
|
|
|
| trait alias used in trait object type (first use)
|
2018-07-15 16:11:54 -05:00
|
|
|
|
2020-01-08 11:02:10 -06:00
|
|
|
error[E0225]: only auto traits can be used as additional traits in a trait object
|
|
|
|
--> $DIR/issue-32963.rs:8:31
|
|
|
|
|
|
|
|
|
LL | size_of_copy::<dyn Misc + Copy>();
|
|
|
|
| ---- ^^^^
|
|
|
|
| | |
|
|
|
|
| | additional non-auto trait
|
|
|
|
| | trait alias used in trait object type (additional use)
|
|
|
|
| first non-auto trait
|
|
|
|
| trait alias used in trait object type (first use)
|
|
|
|
|
2018-07-15 16:11:54 -05:00
|
|
|
error[E0277]: the trait bound `dyn Misc: std::marker::Copy` is not satisfied
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-32963.rs:8:5
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
2019-08-24 16:44:43 -05:00
|
|
|
LL | fn size_of_copy<T: Copy+?Sized>() -> usize { mem::size_of::<T>() }
|
2020-04-06 00:15:06 -05:00
|
|
|
| ---- required by this bound in `size_of_copy`
|
2019-08-24 16:44:43 -05:00
|
|
|
...
|
2019-05-28 13:46:13 -05:00
|
|
|
LL | size_of_copy::<dyn Misc + Copy>();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `std::marker::Copy` is not implemented for `dyn Misc`
|
2018-07-15 16:11:54 -05:00
|
|
|
|
2020-01-08 11:02:10 -06:00
|
|
|
error: aborting due to 3 previous errors
|
2018-07-15 16:11:54 -05:00
|
|
|
|
2019-04-17 12:26:38 -05:00
|
|
|
Some errors have detailed explanations: E0225, E0277.
|
2018-07-15 16:11:54 -05:00
|
|
|
For more information about an error, try `rustc --explain E0225`.
|