2024-11-20 14:19:36 -08:00
|
|
|
error[E0038]: the trait `Bar` is not dyn compatible
|
2025-02-04 02:37:13 +00:00
|
|
|
--> $DIR/sized-2.rs:10:31
|
2019-01-08 22:14:04 +01:00
|
|
|
|
|
2025-02-04 02:37:13 +00:00
|
|
|
LL | fn make_bar<T:Bar>(t: &T) -> &dyn Bar {
|
|
|
|
|
| ^^^^^^^ `Bar` is not dyn compatible
|
2019-01-08 22:14:04 +01: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>
|
2025-02-04 02:37:13 +00:00
|
|
|
--> $DIR/sized-2.rs:5:18
|
2020-10-15 17:23:45 -07:00
|
|
|
|
|
2025-02-04 02:37:13 +00:00
|
|
|
LL | trait Bar
|
2024-11-20 14:19:36 -08:00
|
|
|
| --- this trait is not dyn compatible...
|
2025-02-04 02:37:13 +00:00
|
|
|
LL | where Self : Sized
|
|
|
|
|
| ^^^^^ ...because it requires `Self: Sized`
|
2019-01-08 22:14:04 +01:00
|
|
|
|
2024-11-20 14:19:36 -08:00
|
|
|
error[E0038]: the trait `Bar` is not dyn compatible
|
2025-02-04 02:37:13 +00:00
|
|
|
--> $DIR/sized-2.rs:12:5
|
2019-01-08 22:14:04 +01:00
|
|
|
|
|
2025-02-04 02:37:13 +00:00
|
|
|
LL | t
|
2024-11-20 14:19:36 -08:00
|
|
|
| ^ `Bar` is not dyn compatible
|
2019-01-08 22:14:04 +01: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>
|
2025-02-04 02:37:13 +00:00
|
|
|
--> $DIR/sized-2.rs:5:18
|
2020-10-15 17:23:45 -07:00
|
|
|
|
|
2025-02-04 02:37:13 +00:00
|
|
|
LL | trait Bar
|
2024-11-20 14:19:36 -08:00
|
|
|
| --- this trait is not dyn compatible...
|
2025-02-04 02:37:13 +00:00
|
|
|
LL | where Self : Sized
|
|
|
|
|
| ^^^^^ ...because it requires `Self: Sized`
|
2023-05-11 02:10:56 +00:00
|
|
|
= note: required for the cast from `&T` to `&dyn Bar`
|
2019-01-08 22:14:04 +01:00
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0038`.
|