You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the example above, F* type-checking fails saying that v[i] cannot be proven to be an access in bounds. If the range of the loop is 0..v.len() it can be proven.
This seems to be a problem with Rust_primitives.Hax.Folds.fold_range when the beginning of the range is possibly strictly inferior to the end of the range.
The text was updated successfully, but these errors were encountered:
Open this code snippet in the playground
In the example above, F* type-checking fails saying that
v[i]
cannot be proven to be an access in bounds. If the range of the loop is0..v.len()
it can be proven.This seems to be a problem with
Rust_primitives.Hax.Folds.fold_range
when the beginning of the range is possibly strictly inferior to the end of the range.The text was updated successfully, but these errors were encountered: