rust/library/std/tests/eq-multidispatch.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

52 lines
750 B
Rust
Raw Normal View History

#[derive(PartialEq, Debug)]
2014-11-21 00:32:04 +00:00
struct Bar;
#[derive(Debug)]
2014-11-21 00:32:04 +00:00
struct Baz;
#[derive(Debug)]
2014-11-21 00:32:04 +00:00
struct Foo;
#[derive(Debug)]
2014-11-21 00:32:04 +00:00
struct Fu;
2024-04-28 22:04:25 +00:00
impl PartialEq for Baz {
fn eq(&self, _: &Baz) -> bool {
true
}
}
impl PartialEq<Fu> for Foo {
fn eq(&self, _: &Fu) -> bool {
true
}
}
2014-11-21 00:32:04 +00:00
2024-04-28 22:04:25 +00:00
impl PartialEq<Foo> for Fu {
fn eq(&self, _: &Foo) -> bool {
true
}
}
2014-11-21 00:32:04 +00:00
2024-04-28 22:04:25 +00:00
impl PartialEq<Bar> for Foo {
fn eq(&self, _: &Bar) -> bool {
false
}
}
impl PartialEq<Foo> for Bar {
fn eq(&self, _: &Foo) -> bool {
false
}
}
2014-11-21 00:32:04 +00:00
#[test]
fn eq_multidispatch() {
2014-11-21 00:32:04 +00:00
assert!(Bar != Foo);
assert!(Foo != Bar);
assert_eq!(Bar, Bar);
2014-11-21 00:32:04 +00:00
assert_eq!(Baz, Baz);
2014-11-21 00:32:04 +00:00
assert_eq!(Foo, Fu);
assert_eq!(Fu, Foo);
2014-11-21 00:32:04 +00:00
}