mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
7 lines
210 B
Solidity
7 lines
210 B
Solidity
contract C {
|
|
function g() pure public { g(); }
|
|
function f() view public returns (uint) { f(); g(); }
|
|
function h() public { h(); g(); f(); }
|
|
function i() payable public { i(); h(); g(); f(); }
|
|
}
|