2022-10-09 08:34:42 -05:00
error[E0311]: the parameter type `Self` may not live long enough
|
note: ...that is required by this bound
2024-10-09 16:31:01 -05:00
--> $DIR/supertrait-mentions-GAT.rs:6:15
2022-10-09 08:34:42 -05:00
|
2022-12-05 13:06:32 -06:00
LL | Self: 'a;
| ^^
2023-09-17 09:32:02 -05:00
= help: consider adding an explicit lifetime bound `Self: 'a`...
2022-10-09 08:34:42 -05:00
error: associated item referring to unboxed trait object for its own trait
2024-10-09 16:31:01 -05:00
--> $DIR/supertrait-mentions-GAT.rs:10:20
2022-10-09 08:34:42 -05:00
|
LL | trait SuperTrait<T>: for<'a> GatTrait<Gat<'a> = T> {
| ---------- in this trait
LL | fn c(&self) -> dyn SuperTrait<T>;
| ^^^^^^^^^^^^^^^^^
|
help: you might have meant to use `Self` to refer to the implementing type
|
LL | fn c(&self) -> Self;
| ~~~~
error[E0038]: the trait `SuperTrait` cannot be made into an object
2024-10-09 16:31:01 -05:00
--> $DIR/supertrait-mentions-GAT.rs:10:20
2022-10-09 08:34:42 -05:00
|
LL | fn c(&self) -> dyn SuperTrait<T>;
| ^^^^^^^^^^^^^^^^^ `SuperTrait` cannot be made into an object
|
2024-09-25 03:38:40 -05:00
note: for a trait to be "dyn-compatible" it needs to allow building a vtable to allow the call to be resolvable dynamically; for more information visit <https://doc.rust-lang.org/reference/items/traits.html#object-safety>
2024-10-09 16:31:01 -05:00
--> $DIR/supertrait-mentions-GAT.rs:4:10
2022-10-09 08:34:42 -05:00
|
LL | type Gat<'a>
| ^^^ ...because it contains the generic associated type `Gat`
...
LL | trait SuperTrait<T>: for<'a> GatTrait<Gat<'a> = T> {
| ---------- this trait cannot be made into an object...
= help: consider moving `Gat` to another trait
error: aborting due to 3 previous errors
Some errors have detailed explanations: E0038, E0311.
For more information about an error, try `rustc --explain E0038`.