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

8 lines
148 B
Solidity

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