about summary refs log tree commit diff
path: root/tests/ui/traits/auxiliary/traitimpl.rs
blob: 2544a96048b67f6f19faca4912bf3ab04c2d2660 (plain)
1
2
3
4
5
6
7
// Test inherent trait impls work cross-crait.

pub trait Bar<'a> : 'a {}

impl<'a> dyn Bar<'a> {
    pub fn bar(&self) {}
}