sophia/test/contracts/var_args_unify_fun_call.aes
Gaith Hallak 83abfae32b
Ban the unification of uvars and var_args functions (#423)
* Ban the unification of uvar and var_args function

* Update CHANGELOG

* Fix the tests

* Undo indent

* Change the error message for unify_varargs
2022-11-01 18:10:57 +02:00

8 lines
105 B
Plaintext

contract C =
stateful function g(h) =
h()
stateful entrypoint f() =
g(Chain.create)
123