blob: 7702c3341475337f51a396414781fd36a837ff4f [file] [log] [blame]
module forbid_line_continuations;
string bad_literal = "Humpty Dumpty sat on a wall. \
Humpty Dumpty had a great fall.";
string good_literal = {"Humpty Dumpty sat on a wall.",
"Humpty Dumpty had a great fall."};
endmodule