summaryrefslogtreecommitdiffstats
path: root/src/test/ui/traits/bound/auxiliary/crate_a1.rs
blob: 6aa010258ebd5c6b15a24f30f1caa7ad6aed5dcf (plain)
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> {}