/* This file is @generated for testing purpose */
trait Trait {
fn test(this: &Self, arg: &str) -> impl std::any::Any;
}
#[allow(async_fn_in_trait)]
#[allow(clippy::type_complexity)]
trait DynTrait {
fn test(this: &Self, arg: &str) -> impl std::any::Any;
}
#[allow(clippy::type_complexity)]
impl<TraitImplementor: Trait> DynTrait for TraitImplementor {
fn test(this: &Self, arg: &str) -> impl std::any::Any {
TraitImplementor::test(this, arg)
}
}
fn main() {}