solidity/test/libsolidity/semanticTests/types/convert_fixed_bytes_to_uint_same_type.sol
2019-07-22 16:31:46 +02:00

10 lines
204 B
Solidity

contract Test {
function bytesToUint(bytes32 s) public returns (uint256 h) {
return uint(s);
}
}
// ====
// compileViaYul: also
// ----
// bytesToUint(bytes32): "abc2" -> left(0x61626332)