solidity/test/libsolidity/syntaxTests/string/string_multipart_only_hex.sol
2022-04-01 23:41:18 -05:00

9 lines
247 B
Solidity

contract test {
function f() public pure returns (bytes32) {
bytes32 escapeCharacters = hex"aa" hex"bb" "cc";
return escapeCharacters;
}
}
// ----
// ParserError 2314: (116-120='"cc"'): Expected ';' but got 'StringLiteral'