Merge branch 'main' of github.com:roc-lang/roc into clippy-1.74

This commit is contained in:
Anton-4 2023-12-25 17:05:37 +01:00
commit cd632fe549
No known key found for this signature in database
GPG key ID: 0971D718C0A9B937
271 changed files with 7741 additions and 7417 deletions

View file

@ -3768,6 +3768,14 @@ mod solve_expr {
);
}
#[test]
fn list_walk_with_index_until() {
infer_eq_without_problem(
indoc!(r#"List.walkWithIndexUntil"#),
"List elem, state, (state, elem, Nat -> [Break state, Continue state]) -> state",
);
}
#[test]
fn list_drop_at() {
infer_eq_without_problem(