Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
#[derive(PartialEq)] struct Comparable;
#[derive(PartialEq, PartialOrd)] struct Nope(Comparable);
//~^ ERROR can't compare `Comparable`
fn main() {}