1 2 3 4 5 6 7
// Test inherent trait impls work cross-crait. pub trait Bar<'a> : 'a {} impl<'a> Bar<'a> { pub fn bar(&self) {} }