2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2018-09-25 16:51:35 -05:00
|
|
|
#![allow(dead_code)]
|
2015-01-28 07:34:18 -06:00
|
|
|
#[derive(PartialEq, Debug)]
|
2012-11-19 20:05:50 -06:00
|
|
|
enum Foo {
|
|
|
|
Bar,
|
|
|
|
Baz,
|
|
|
|
Boo
|
|
|
|
}
|
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {
|
2014-11-06 02:05:53 -06:00
|
|
|
let a = Foo::Bar;
|
|
|
|
let b = Foo::Bar;
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(a, b);
|
2013-03-28 20:39:09 -05:00
|
|
|
assert!(!(a != b));
|
|
|
|
assert!(a.eq(&b));
|
|
|
|
assert!(!a.ne(&b));
|
2012-11-19 20:05:50 -06:00
|
|
|
}
|