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

8 lines
147 B
Solidity

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