blob: 2a8bba316bc4be56157331f3e33afa496c7899db (
plain) (
blame)
1
2
3
4
5
6
|
contract C {
uint x;
function f() view public { x = 2; }
}
// ----
// Warning: (56-57): Function declared as view, but this expression (potentially) modifies the state and thus requires non-payable (the default) or payable.
|