Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// Point at correct span for self type
struct SomeType {}
trait Foo {
fn handler(self: &SomeType); //~ ERROR invalid `self` parameter type
}
fn main() {}