solidity/test/libsolidity/syntaxTests/viewPureChecker/call_internal_functions_fail.sol
2022-04-01 23:41:18 -05:00

11 lines
469 B
Solidity

contract C {
uint x;
function f() pure public { g(); }
function g() view public { x; }
function h() view public { i(); }
function i() public { x = 2; }
}
// ----
// TypeError 2527: (56-59='g()'): Function declared as pure, but this expression (potentially) reads from the environment or state and thus requires "view".
// TypeError 8961: (130-133='i()'): Function cannot be declared as view because this expression (potentially) modifies the state.