Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// compile-flags: -Znext-solver
// check-pass
trait Foo<'a> {}
trait Bar<'a> {}
impl<'a, T: Bar<'a>> Foo<'a> for T {}
impl<T> Bar<'static> for T {}
fn main() {}