Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix building jaq-interpret tests on 32-bit platforms #159

Merged
merged 1 commit into from
Feb 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion jaq-interpret/src/rc_lazy_list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ fn drop() {
let list = List::from_iter(0..100_000);
// clone() ensures that we keep a copy of the whole list around
// sum() then evaluates the whole list
assert_eq!(list.clone().sum::<usize>(), 4999950000);
assert_eq!(list.clone().sum::<u64>(), 4999950000);
// at the end, a long, fully evaluated list is dropped,
// which would result in a stack overflow without the custom `Drop` impl
std::mem::drop(list);
Expand Down
Loading