Improve core::array coverage

This commit is contained in:
Christian Poveda 2025-09-10 16:41:13 -05:00
parent 565a9ca63e
commit a7528e7ec3
No known key found for this signature in database
GPG Key ID: 3B422F347D81A9E8

View File

@ -717,3 +717,10 @@ fn array_map_drops_unmapped_elements_on_panic() {
assert_eq!(counter.load(Ordering::SeqCst), MAX);
}
}
// This covers the `PartialEq::<[T]>::eq` impl for `[T; N]` when it returns false.
#[test]
fn array_eq() {
let not_true = [0u8] == [].as_slice();
assert!(!not_true);
}