aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/viewPureChecker/write_storage_fail.sol
blob: 3fed4d29760c665b29df4ee4d5ca5a43b8ff2b06 (plain) (blame)
1
2
3
4
5
6
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.