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

10 lines
247 B
Solidity

contract test {
function f() public pure returns (bytes32) {
bytes32 escapeCharacters = "This a test
";
return escapeCharacters;
}
}
// ----
// ParserError 8936: (100-112='"This a test'): Expected string end-quote.