2024-11-20 14:19:36 -08:00
|
|
|
error[E0038]: the trait `Bar` is not dyn compatible
|
2024-10-09 23:31:01 +02:00
|
|
|
--> $DIR/sized.rs:12:32
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2024-02-09 12:17:55 +00:00
|
|
|
LL | fn make_bar<T: Bar>(t: &T) -> &dyn Bar {
|
2024-11-20 14:19:36 -08:00
|
|
|
| ^^^^^^^ `Bar` is not dyn compatible
|
2020-10-15 17:23:45 -07:00
|
|
|
|
|
2024-11-20 14:19:36 -08:00
|
|
|
note: for a trait to be dyn compatible it needs to allow building a vtable
|
2025-01-22 05:14:07 +01:00
|
|
|
for more information, visit <https://doc.rust-lang.org/reference/items/traits.html#dyn-compatibility>
|
2024-10-09 23:31:01 +02:00
|
|
|
--> $DIR/sized.rs:8:12
|
2020-10-15 17:23:45 -07:00
|
|
|
|
|
2024-02-09 12:17:55 +00:00
|
|
|
LL | trait Bar: Sized {
|
|
|
|
|
| --- ^^^^^ ...because it requires `Self: Sized`
|
2020-01-31 16:47:00 -08:00
|
|
|
| |
|
2024-11-20 14:19:36 -08:00
|
|
|
| this trait is not dyn compatible...
|
2017-12-10 22:47:55 +03:00
|
|
|
|
2024-11-20 14:19:36 -08:00
|
|
|
error[E0038]: the trait `Bar` is not dyn compatible
|
2024-10-09 23:31:01 +02:00
|
|
|
--> $DIR/sized.rs:14:5
|
2024-02-09 12:17:55 +00:00
|
|
|
|
|
|
|
|
|
LL | t
|
2024-11-20 14:19:36 -08:00
|
|
|
| ^ `Bar` is not dyn compatible
|
2024-02-09 12:17:55 +00:00
|
|
|
|
|
2024-11-20 14:19:36 -08:00
|
|
|
note: for a trait to be dyn compatible it needs to allow building a vtable
|
2025-01-22 05:14:07 +01:00
|
|
|
for more information, visit <https://doc.rust-lang.org/reference/items/traits.html#dyn-compatibility>
|
2024-10-09 23:31:01 +02:00
|
|
|
--> $DIR/sized.rs:8:12
|
2024-02-09 12:17:55 +00:00
|
|
|
|
|
|
|
|
|
LL | trait Bar: Sized {
|
|
|
|
|
| --- ^^^^^ ...because it requires `Self: Sized`
|
|
|
|
|
| |
|
2024-11-20 14:19:36 -08:00
|
|
|
| this trait is not dyn compatible...
|
2024-02-09 12:17:55 +00:00
|
|
|
= note: required for the cast from `&T` to `&dyn Bar`
|
|
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2017-12-10 22:47:55 +03:00
|
|
|
|
2018-03-03 15:59:40 +01:00
|
|
|
For more information about this error, try `rustc --explain E0038`.
|