sophia/test/contracts/polymorphism_add_stateful_entrypoint.aes
Gaith Hallak 256df25af4
Check contracts and entrypoints modifiers when implementing interfaces (#427)
* Check contracts and entrypoints modifiers when implementing interfaces

* Fix existing tests

* Add passing tests

* Add failing tests

* Update docs

* Update CHANGELOG
2022-11-17 11:40:57 +03:00

6 lines
102 B
Plaintext

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