rust/src/test/ui/issues/issue-32963.stderr

36 lines
1.6 KiB
Plaintext
Raw Normal View History

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
|
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-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
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`.