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

10 lines
186 B
Solidity
Raw Normal View History

2019-07-10 15:23:19 +00:00
contract Test {
function UintToBytes(uint8 h) public returns (bytes1 s) {
return bytes1(h);
}
}
// ====
// compileViaYul: also
// ----
// UintToBytes(uint8): 0x61 -> "a"