Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
pub trait Bar {}
pub fn try_foo(x: impl Bar) {}
pub struct ImplementsTraitForUsize<T> {
_marker: std::marker::PhantomData<T>,
}
impl Bar for ImplementsTraitForUsize<usize> {}