sophia/test/contracts/init_error.aes
2018-12-22 01:23:40 +01:00

10 lines
174 B
Plaintext

contract Remote =
function missing : (int) => int
contract Init_error =
record state = {value : int}
function init(r : Remote, x : int) =
{value = r.missing(x)}