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

11 lines
259 B
Solidity

contract test {
function f() public pure returns (bytes32) {
bytes32 escapeCharacters = hex"0000"
"deaf"
"feed";
return escapeCharacters;
}
}
// ----
// ParserError 2314: (118-124): Expected ';' but got 'StringLiteral'