()
| 705 | |
| 706 | #[test] |
| 707 | fn ct_eq() { |
| 708 | assert!(NONE.ct_eq(&NONE).to_bool()); |
| 709 | assert!(NONE.ct_ne(&SOME).to_bool()); |
| 710 | assert!(SOME.ct_ne(&NONE).to_bool()); |
| 711 | assert!(SOME.ct_eq(&SOME).to_bool()); |
| 712 | assert!(SOME.ct_ne(&OTHER).to_bool()); |
| 713 | } |
| 714 | |
| 715 | #[test] |
| 716 | fn ct_select() { |