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

8 lines
153 B
Solidity
Raw Normal View History

2019-09-06 13:29:51 +00:00
contract C {
function f() public pure returns(bytes memory) {
return hex"12_34_5678_9A";
}
}
// ----
// f() -> 32, 5, left(0x123456789A)