2019-10-05 20:47:23 +00:00
|
|
|
contract test {
|
|
|
|
function f() public pure returns (bytes32) {
|
|
|
|
bytes32 escapeCharacters = hex"aa" hex"bb" "cc";
|
|
|
|
return escapeCharacters;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ----
|
2020-06-19 00:26:46 +00:00
|
|
|
// ParserError 2314: (116-120): Expected ';' but got 'StringLiteral'
|