solidity/test/libsolidity/syntaxTests/viewPureChecker/write_storage_fail.sol
2018-07-04 10:14:58 +02:00

7 lines
234 B
Solidity

contract C {
uint x;
function f() view public { x = 2; }
}
// ----
// TypeError: (56-57): Function declared as view, but this expression (potentially) modifies the state and thus requires non-payable (the default) or payable.