This website requires JavaScript.
Explore
Help
Sign In
cerc-io
/
solidity
Watch
16
Star
0
Fork
0
You've already forked solidity
mirror of
https://github.com/ethereum/solidity
synced
2023-10-03 13:03:40 +00:00
Code
Issues
Actions
Packages
Projects
Releases
Wiki
Activity
339f3ca32c
solidity
/
test
/
libsolidity
/
syntaxTests
/
inheritance
/
fallback_receive
/
fallback_with_override.sol
7 lines
100 B
Solidity
Raw
Normal View
History
Unescape
Escape
Split fallback function and introduce "fallback()" and "receive()" syntax.
2019-09-09 16:22:02 +00:00
contract
C
{
Implement virtual keyword
2019-11-05 17:25:34 +00:00
fallback
(
)
virtual
external
{
}
Split fallback function and introduce "fallback()" and "receive()" syntax.
2019-09-09 16:22:02 +00:00
}
contract
D
is
C
{
fallback
(
)
override
external
{
}
}
Reference in New Issue
Copy Permalink