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

8 lines
147 B
Solidity
Raw Normal View History

2019-09-06 13:29:51 +00:00
contract C {
function f() public pure {
hex"1_234";
}
}
// ----
// ParserError 8936: (52-56): Expected even number of hex-nibbles.