unison/unison-src/transcripts/fix3171.md
2022-08-31 16:34:19 -04:00

253 B

.> builtins.merge

Tests an case where decompiling could cause function arguments to occur in the opposite order for partially applied functions.

f : Nat -> Nat -> Nat -> () -> Nat
f x y z _ = x + y * z

> f 1 2
> f 1 2 3