Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
36edd2bd845c2e56e36b75d2696ae7a98914e2a8
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-11
/
11.4.12.2--string_concat_op.sv
blob: d50862d6ade02b3bba8abacd0e3b5fee6f65c92b [
file
] [
log
] [
blame
]
/*
:name: string_concat_op
:description: string concatenation operator test
:should_fail: 0
:tags: 11.4.12.2
*/
module
top
();
string
str
;
initial
begin
str
=
{
"Hello"
,
" "
,
"World"
,
"!"
};
$display
(
str
);
end
endmodule