sophia/test/contracts/polymorphism_change_entrypoint_to_function.aes
2022-11-11 20:36:44 +03:00

7 lines
118 B
Plaintext

contract interface I =
entrypoint f : () => int
contract C : I =
entrypoint init() = ()
function f() = 1