solidity/test/libsolidity/semanticTests/literals/hex_string_with_underscore.sol
2019-09-06 17:58:35 +02:00

8 lines
153 B
Solidity

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