Simplify combine

This commit is contained in:
Ayaz Hafiz 2022-08-09 15:17:09 -07:00
parent 4bfac11624
commit c1a7e7893b
No known key found for this signature in database
GPG Key ID: 0E2A37416A25EF58

View File

@ -3712,7 +3712,7 @@ fn recursive_lambda_set_issue_3444() {
assert_evals_to!(
indoc!(
r#"
combine = \a, b -> (\x -> b (a x))
combine = \f, g -> \x -> g (f x)
const = \x -> (\_y -> x)
list = [const "a", const "b", const "c"]
@ -3735,7 +3735,7 @@ fn recursive_lambda_set_toplevel_issue_3444() {
r#"
app "test" provides [main] to "./platform"
combine = \a, b -> (\x -> b (a x))
combine = \f, g -> \x -> g (f x)
const = \x -> (\_y -> x)
list = [const "a", const "b", const "c"]