sophia/test/contracts/polymorphism_remove_payable_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
101 B
Plaintext

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