aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/parsing/single_function_param.sol
blob: b64fffcec1cd0b0bf9bffcf900be8fcbde4224cf (plain) (blame)
1
2
3
4
5
6
contract test {
    uint256 stateVar;
    function functionName(bytes32 input) public returns (bytes32 out) {}
}
// ----
// Warning: (36-104): Function state mutability can be restricted to pure