This commit is contained in:
nora 2022-09-15 23:20:01 +02:00
parent 5b384039db
commit bf905e79f5

View file

@ -1,12 +1,12 @@
trait SecondTrait {
type Item2;
}
pub trait FirstTrait {
type Item;
type Extra: Extra<(), Error = Self::Item>;
}
trait SecondTrait {
type Item2;
}
trait ThirdTrait: SecondTrait {
type Item3;
}