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

10 lines
186 B
Solidity

contract Test {
function bytesToUint(bytes1 s) public returns (uint8 h) {
return uint8(s);
}
}
// ====
// compileViaYul: also
// ----
// bytesToUint(bytes1): "a" -> 0x61