solidity/test/libsolidity/semanticTests/ecrecover/failing_ecrecover_invalid_input.sol

11 lines
339 B
Solidity
Raw Normal View History

2019-02-28 22:49:03 +00:00
contract C {
// ecrecover should return zero for malformed input
// (v should be 27 or 28, not 1)
// Note that the precompile does not return zero but returns nothing.
function f() public returns (address) {
return ecrecover(bytes32(type(uint256).max), 1, bytes32(uint(2)), bytes32(uint(3)));
2019-02-28 22:49:03 +00:00
}
}
// ----
// f() -> 0