sophia/test/contracts/polymorphism_non_payable_contract_implement_payable.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
111 B
Plaintext

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