solidity/test/libsolidity/syntaxTests/string/string_multipart_hex_valid_parts.sol

9 lines
229 B
Solidity
Raw Normal View History

contract test {
function f() public pure returns (bytes32) {
bytes32 escapeCharacters = hex"aa" hex"b";
return escapeCharacters;
}
}
// ----
2019-11-26 15:27:07 +00:00
// ParserError: (108-112): Expected even number of hex-nibbles.