solidity/test/libsolidity/syntaxTests/types/bytes1_to_uint256.sol

8 lines
206 B
Solidity

contract C {
function f() public pure returns(uint256) {
return uint256(bytes1(''));
}
}
// ----
// TypeError 9640: (76-95): Explicit type conversion not allowed from "bytes1" to "uint256".