Sign in
foss-fpga-tools
/
third_party
/
verible
/
07095f61a411b16de8b60e28d8dde49151bc63cd
/
.
/
verilog
/
tools
/
lint
/
testdata
/
forbid_line_continuations.sv
blob: 7702c3341475337f51a396414781fd36a837ff4f [
file
]
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