Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// run-pass
#[derive(PartialEq, Debug)]
struct Foo;
pub fn main() {
assert_eq!(Foo, Foo);
assert!(!(Foo != Foo));
}