solidity/test/libsolidity/syntaxTests/viewPureChecker/call_internal_functions_success.sol

7 lines
210 B
Solidity
Raw Normal View History

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(); }
}