solidity/test/libsolidity/semanticTests/receive/inherited.sol

13 lines
245 B
Solidity
Raw Normal View History

contract A {
uint data;
receive() external payable { ++data; }
function getData() public returns (uint r) { return data; }
}
contract B is A {}
// ----
// getData() -> 0
// () ->
// getData() -> 1
// (), 1 ether ->
// getData() -> 2