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

8 lines
148 B
Solidity
Raw Normal View History

2019-09-06 13:29:51 +00:00
contract C {
function f() public pure {
hex"12__34";
}
}
// ----
// ParserError 8936: (52-60): Invalid use of number separator '_'.