solidity/test/libsolidity/syntaxTests/types/address/bytes_short_to_payable_address.sol

9 lines
361 B
Solidity
Raw Normal View History

contract C {
function f(bytes10 x) public pure returns (address payable) {
return address(x);
}
}
// ----
// TypeError: (94-104): Explicit type conversion not allowed from "bytes10" to "address".
// TypeError: (94-104): Return argument type address is not implicitly convertible to expected type (type of first return variable) address payable.