()
| 201 | |
| 202 | #[test] |
| 203 | fn ordering_ct_select() { |
| 204 | let a = cmp::Ordering::Less; |
| 205 | let b = cmp::Ordering::Greater; |
| 206 | assert_eq!(a.ct_select(&b, Choice::FALSE), a); |
| 207 | assert_eq!(a.ct_select(&b, Choice::TRUE), b); |
| 208 | } |
| 209 | } |
nothing calls this directly
no outgoing calls
no test coverage detected