solidity/test/libsolidity/syntaxTests/literals/hex_string_misaligned_underscore.sol
2019-09-06 17:58:35 +02:00

8 lines
142 B
Solidity

contract C {
function f() public pure {
hex"1_234";
}
}
// ----
// ParserError: (52-56): Expected even number of hex-nibbles.