solidity/test/libsolidity/semanticTests/types/convert_fixed_bytes_to_uint_greater_size.sol

10 lines
205 B
Solidity
Raw Normal View History

2019-07-10 15:23:19 +00:00
contract Test {
function bytesToUint(bytes4 s) public returns (uint64 h) {
return uint64(uint32(s));
}
}
// ====
// compileViaYul: also
// ----
// bytesToUint(bytes4): "abcd" -> 0x61626364