Skip to content

Commit e53a6e0

Browse files
Owen-CH-Leungjswrenn
authored andcommitted
Add ziplongest to specializations.rs
1 parent 55f2830 commit e53a6e0

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/specializations.rs

+4
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,10 @@ quickcheck! {
8989
a.truncate(6);
9090
test_specializations(&a.iter().powerset())
9191
}
92+
93+
fn zip_longest(a: Vec<u8>, b: Vec<u8>) -> () {
94+
test_specializations(&a.into_iter().zip_longest(b))
95+
}
9296
}
9397

9498
quickcheck! {

0 commit comments

Comments
 (0)