1 2 3 4 5 6 7 8 9 10
trait Foo { type X: Into<String>; } #[dynamize::dynamize] trait Bar: Foo { fn test(&self) -> <Self as Foo>::X; } fn main() {}