#[dynamize::dynamize]
pub trait MyTrait {
    type A<'a>: Into<&'a str>;

    fn test1<'b>(&self) -> Self::A<'b>;
}

fn main() {}