Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
trait Foo {
fn foo();
//~^ NOTE trait method declared without `&self`
}
struct Bar;
impl Foo for Bar {
fn foo(&self) {}
//~^ ERROR E0185
//~| NOTE `&self` used in impl
fn main() {