rust/tests/ui/traits/bound/auxiliary/crate_a1.rs
2023-01-11 09:32:08 +00:00

10 lines
182 B
Rust

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