1 2 3 4 5 6 7 8 9
pub trait Bar {} pub fn try_foo(x: impl Bar) {} pub struct ImplementsTraitForUsize<T> { _marker: std::marker::PhantomData<T>, } impl Bar for ImplementsTraitForUsize<usize> {}