Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
struct Bar;
struct Foo<'s> {
bar: &'s mut Bar,
}
impl Foo<'_> {
fn new(bar: &mut Bar) -> Self {
Foo { bar } //~ERROR
fn main() { }