2022-10-26 11:05:58 -05:00
|
|
|
error[E0277]: the trait bound `<<Self as TraitC<E>>::TypeC<'a> as TraitB>::TypeB: TraitA` is not satisfied
|
2023-01-07 21:14:27 -06:00
|
|
|
--> $DIR/issue-103573.rs:18:18
|
2022-10-26 11:05:58 -05:00
|
|
|
|
|
|
|
|
LL | fn g<'a>(_: &<<Self::TypeC<'a> as TraitB>::TypeB as TraitA>::TypeA);
|
2023-01-07 21:14:27 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `TraitA` is not implemented for `<<Self as TraitC<E>>::TypeC<'a> as TraitB>::TypeB`
|
2022-10-26 11:05:58 -05:00
|
|
|
|
|
|
|
|
help: consider further restricting the associated type
|
|
|
|
|
|
|
|
|
LL | fn g<'a>(_: &<<Self::TypeC<'a> as TraitB>::TypeB as TraitA>::TypeA) where <<Self as TraitC<E>>::TypeC<'a> as TraitB>::TypeB: TraitA;
|
|
|
|
| +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2022-10-26 11:05:58 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|