2019-10-05 20:47:23 +00:00
|
|
|
contract test {
|
|
|
|
function f() public pure returns (bytes32) {
|
|
|
|
bytes32 escapeCharacters = hex"aa" hex"b";
|
|
|
|
return escapeCharacters;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ----
|
2020-06-19 00:26:46 +00:00
|
|
|
// ParserError 5428: (108-112): Expected even number of hex-nibbles.
|