Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
pub trait Foo {
type A;
}
type I<'a> = &'a (dyn Foo + 'a);
//~^ ERROR the value of the associated type `A` in `Foo` must be specified
fn main() {}