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/mention-correct-dyn-incompatible-trait.rs:19:15
|
2018-07-15 14:11:54 -07:00
|
|
|
|
|
2019-05-28 14:46:13 -04:00
|
|
|
LL | let test: &mut dyn Bar = &mut thing;
|
2024-11-20 14:19:36 -08:00
|
|
|
| ^^^^^^^^^^^^ `Bar` is not dyn compatible
|
2020-01-31 16:47:00 -08: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/mention-correct-dyn-incompatible-trait.rs:4:8
|
2018-07-15 14:11:54 -07:00
|
|
|
|
|
2019-09-02 20:22:22 -07:00
|
|
|
LL | fn foo<T>(&self, val: T);
|
2020-10-15 17:23:45 -07:00
|
|
|
| ^^^ ...because method `foo` has generic type parameters
|
2020-01-31 16:47:00 -08:00
|
|
|
...
|
|
|
|
|
LL | trait Bar: Foo { }
|
2024-11-20 14:19:36 -08:00
|
|
|
| --- this trait is not dyn compatible...
|
2021-09-12 18:49:56 +00:00
|
|
|
= help: consider moving `foo` to another trait
|
2024-11-20 14:19:36 -08:00
|
|
|
= help: only type `Thing` implements `Bar`; consider using it directly instead.
|
2020-10-15 17:23:45 -07: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/mention-correct-dyn-incompatible-trait.rs:19:30
|
2020-10-15 17:23:45 -07:00
|
|
|
|
|
2019-05-28 14:46:13 -04:00
|
|
|
LL | let test: &mut dyn Bar = &mut thing;
|
2024-11-20 14:19:36 -08:00
|
|
|
| ^^^^^^^^^^ `Bar` is not dyn compatible
|
2018-07-15 14:11:54 -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/mention-correct-dyn-incompatible-trait.rs:4:8
|
2020-10-15 17:23:45 -07:00
|
|
|
|
|
|
|
|
|
LL | fn foo<T>(&self, val: T);
|
|
|
|
|
| ^^^ ...because method `foo` has generic type parameters
|
|
|
|
|
...
|
|
|
|
|
LL | trait Bar: Foo { }
|
2024-11-20 14:19:36 -08:00
|
|
|
| --- this trait is not dyn compatible...
|
2021-09-12 18:49:56 +00:00
|
|
|
= help: consider moving `foo` to another trait
|
2024-11-20 14:19:36 -08:00
|
|
|
= help: only type `Thing` implements `Bar`; consider using it directly instead.
|
2023-05-11 02:10:56 +00:00
|
|
|
= note: required for the cast from `&mut Thing` to `&mut dyn Bar`
|
2018-07-15 14:11:54 -07:00
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0038`.
|