Sign in
foss-fpga-tools
/
third_party
/
verible
/
c428b43c153fa0708394d76824d00a0e94801683
/
.
/
verilog
/
tools
/
lint
/
testdata
/
forbid_line_continuations.sv
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