solidity/test/libsolidity/syntaxTests/string/string_multipart_only_hex.sol
2020-01-08 16:12:06 +01:00

9 lines
235 B
Solidity

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