solidity/test/libsolidity/syntaxTests/literals/hex_string_trailing_underscore.sol

8 lines
147 B
Solidity

contract C {
function f() public pure {
hex"1234_";
}
}
// ----
// ParserError 8936: (52-61): Invalid use of number separator '_'.