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

8 lines
205 B
Solidity
Raw Normal View History

contract C {
function f() public pure returns(bytes32) {
return bytes32(uint32(0));
}
}
// ----
// TypeError 9640: (76-94): Explicit type conversion not allowed from "uint32" to "bytes32".