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

9 lines
237 B
Solidity

contract test {
function f() public pure returns (bytes32) {
bytes32 escapeCharacters = "foo" "bar" hex"aa";
return escapeCharacters;
}
}
// ----
// ParserError: (112-119): Expected ';' but got 'HexStringLiteral'