aboutsummaryrefslogblamecommitdiffstats
path: root/test/libsolidity/syntaxTests/viewPureChecker/call_internal_functions_success.sol
blob: 5aa21ce1a982773c18be00e2991f7eb9e9845f8a (plain) (tree)
1
2
3
4
5
6





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