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/mentions-Self.rs:18:31
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2019-05-28 14:46:13 -04: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-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>
|
2025-02-04 02:37:13 +00:00
|
|
|
--> $DIR/mentions-Self.rs:7:22
|
2020-10-15 17:23:45 -07:00
|
|
|
|
|
|
|
|
|
LL | trait Bar {
|
2024-11-20 14:19:36 -08:00
|
|
|
| --- this trait is not dyn compatible...
|
2020-10-15 17:23:45 -07:00
|
|
|
LL | fn bar(&self, x: &Self);
|
|
|
|
|
| ^^^^^ ...because method `bar` references the `Self` type in this parameter
|
2021-09-12 18:49:56 +00:00
|
|
|
= help: consider moving `bar` to another trait
|
2017-12-10 22:47:55 +03:00
|
|
|
|
2024-11-20 14:19:36 -08:00
|
|
|
error[E0038]: the trait `Baz` is not dyn compatible
|
2025-02-04 02:37:13 +00:00
|
|
|
--> $DIR/mentions-Self.rs:24:31
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2019-05-28 14:46:13 -04:00
|
|
|
LL | fn make_baz<T:Baz>(t: &T) -> &dyn Baz {
|
2024-11-20 14:19:36 -08:00
|
|
|
| ^^^^^^^ `Baz` 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>
|
2025-02-04 02:37:13 +00:00
|
|
|
--> $DIR/mentions-Self.rs:11:22
|
2020-10-15 17:23:45 -07:00
|
|
|
|
|
|
|
|
|
LL | trait Baz {
|
2024-11-20 14:19:36 -08:00
|
|
|
| --- this trait is not dyn compatible...
|
2020-10-15 17:23:45 -07:00
|
|
|
LL | fn baz(&self) -> Self;
|
|
|
|
|
| ^^^^ ...because method `baz` references the `Self` type in its return type
|
2021-09-12 18:49:56 +00:00
|
|
|
= help: consider moving `baz` to another trait
|
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
|
2025-02-04 02:37:13 +00:00
|
|
|
--> $DIR/mentions-Self.rs:20: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>
|
2025-02-04 02:37:13 +00:00
|
|
|
--> $DIR/mentions-Self.rs:7:22
|
2024-02-09 12:17:55 +00:00
|
|
|
|
|
|
|
|
|
LL | trait Bar {
|
2024-11-20 14:19:36 -08:00
|
|
|
| --- this trait is not dyn compatible...
|
2024-02-09 12:17:55 +00:00
|
|
|
LL | fn bar(&self, x: &Self);
|
|
|
|
|
| ^^^^^ ...because method `bar` references the `Self` type in this parameter
|
|
|
|
|
= help: consider moving `bar` to another trait
|
|
|
|
|
= note: required for the cast from `&T` to `&dyn Bar`
|
|
|
|
|
|
2024-11-20 14:19:36 -08:00
|
|
|
error[E0038]: the trait `Baz` is not dyn compatible
|
2025-02-04 02:37:13 +00:00
|
|
|
--> $DIR/mentions-Self.rs:26:5
|
2024-02-09 12:17:55 +00:00
|
|
|
|
|
|
|
|
|
LL | t
|
2024-11-20 14:19:36 -08:00
|
|
|
| ^ `Baz` 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>
|
2025-02-04 02:37:13 +00:00
|
|
|
--> $DIR/mentions-Self.rs:11:22
|
2024-02-09 12:17:55 +00:00
|
|
|
|
|
|
|
|
|
LL | trait Baz {
|
2024-11-20 14:19:36 -08:00
|
|
|
| --- this trait is not dyn compatible...
|
2024-02-09 12:17:55 +00:00
|
|
|
LL | fn baz(&self) -> Self;
|
|
|
|
|
| ^^^^ ...because method `baz` references the `Self` type in its return type
|
|
|
|
|
= help: consider moving `baz` to another trait
|
|
|
|
|
= note: required for the cast from `&T` to `&dyn Baz`
|
|
|
|
|
|
|
|
|
|
error: aborting due to 4 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`.
|