Skip to content

Commit

Permalink
Add ziplongest to specializations.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
Owen-CH-Leung authored and jswrenn committed Oct 5, 2023
1 parent 55f2830 commit e53a6e0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/specializations.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,10 @@ quickcheck! {
a.truncate(6);
test_specializations(&a.iter().powerset())
}

fn zip_longest(a: Vec<u8>, b: Vec<u8>) -> () {
test_specializations(&a.into_iter().zip_longest(b))
}
}

quickcheck! {
Expand Down

0 comments on commit e53a6e0

Please sign in to comment.