solidity/test/libsolidity/semanticTests/literals/hex_string_with_underscore.sol

10 lines
184 B
Solidity

contract C {
function f() public pure returns(bytes memory) {
return hex"12_34_5678_9A";
}
}
// ====
// compileViaYul: also
// ----
// f() -> 32, 5, left(0x123456789A)