Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// Test inherent trait impls work cross-crait.
pub trait Bar<'a> : 'a {}
impl<'a> Bar<'a> {
pub fn bar(&self) {}
}