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

10 lines
253 B
Solidity
Raw Normal View History

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