Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
struct Bar;
impl Bar {
fn hash<T>(&self, _: T) {}
}
#[derive(Hash)]
struct Foo(Bar);
//~^ error: `Bar: Hash` is not satisfied
fn main() {}