solidity/test/libsolidity/syntaxTests/viewPureChecker/suggest_view.sol
2020-01-08 16:12:06 +01:00

7 lines
164 B
Solidity

contract C {
uint x;
function g() public returns (uint) { return x; }
}
// ----
// Warning: (29-77): Function state mutability can be restricted to "view".