()
| 3824 | #[test] |
| 3825 | #[should_panic] |
| 3826 | fn intersection_size_checks() { |
| 3827 | let mut indices = [0usize; 10]; |
| 3828 | let mut indices2 = [0usize; 5]; |
| 3829 | let data = vec![0x41u8; 12]; |
| 3830 | |
| 3831 | intersection_by(|_: usize| &data, |_: usize| &data, 1, &mut indices, &mut indices2).unwrap(); |
| 3832 | } |
| 3833 | |
| 3834 | #[test] |
| 3835 | fn intersection_debug() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…