sophia/test/contracts/var_args_unify_fun_call.aes
2022-11-01 11:57:00 +03:00

8 lines
105 B
Plaintext

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