solidity/test/libsolidity/syntaxTests/inheritance/fallback_receive/receive_with_override.sol

8 lines
122 B
Solidity
Raw Normal View History

contract C {
2019-11-05 17:25:34 +00:00
receive() virtual external payable {}
}
contract D is C {
receive() override external payable {}
}
// ----