()
| 1568 | |
| 1569 | #[test] |
| 1570 | fn test_repeat_slice_count_edge_cases() { |
| 1571 | // Empty slice |
| 1572 | test_repeat_count(100, &[] as &[i32]); |
| 1573 | |
| 1574 | // Zero repeats |
| 1575 | test_repeat_count(0, &[1i32, 2, 3]); |
| 1576 | } |
| 1577 | |
| 1578 | #[test] |
| 1579 | #[should_panic(expected = "repeated slice byte length overflow")] |
nothing calls this directly
no test coverage detected