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

13 lines
512 B
Solidity
Raw Normal View History

2018-07-04 09:25:45 +00:00
contract D {
uint x;
modifier viewm(uint) { uint a = x; _; a; }
modifier nonpayablem(uint) { x = 2; _; }
}
contract C is D {
function f() viewm(0) pure public {}
function g() nonpayablem(0) view public {}
}
// ----
// TypeError 2527: (154-162): Function declared as pure, but this expression (potentially) reads from the environment or state and thus requires "view".
2022-02-17 15:52:36 +00:00
// TypeError 8961: (195-209): Function cannot be declared as view because this expression (potentially) modifies the state.