solidity/test/libsolidity/ASTJSON/fallback_and_receive_ether.sol
chriseth 1e63615206 Export all events.
Update tests.

Additional tests

Revert changes to the Natspec
2023-05-03 14:08:27 -03:00

9 lines
95 B
Solidity

contract C {
receive() external payable {
}
fallback() external payable {
}
}
// ----