blob: b61d104f9293da1608b10970a1a0b14007d17817 (
plain) (
blame)
1
2
3
4
5
6
7
|
contract test {
uint256 stateVar;
// We won't see this comment
function functionName(bytes32 input) public returns (bytes32 out) {}
}
// ----
// Warning: (75-143): Function state mutability can be restricted to pure
|