solidity/test/libsolidity/syntaxTests/globalFunctions/sha256_with_wrong_arg_count.sol

12 lines
821 B
Solidity
Raw Normal View History

2018-06-14 14:09:29 +00:00
contract C {
function f() public {
require(sha256() != 0);
require(sha256(uint(1)) != 0);
require(sha256(uint(1), uint(2)) != 0);
}
}
// ----
// TypeError: (55-63): Wrong argument count for function call: 0 arguments given but expected 1. This function requires a single bytes argument. Use abi.encodePacked(...) to properly encode the values.
// TypeError: (94-101): Invalid type for argument in function call. Invalid implicit conversion from uint256 to bytes memory requested. This function requires a single bytes argument. Use abi.encodePacked(...) to properly encode the values.
// TypeError: (126-150): Wrong argument count for function call: 2 arguments given but expected 1. This function requires a single bytes argument. Use abi.encodePacked(...) to properly encode the values.