pub trait Bar {} pub fn try_foo(x: impl Bar) {} pub struct ImplementsTraitForUsize { _marker: std::marker::PhantomData, } impl Bar for ImplementsTraitForUsize {}