Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
36edd2bd845c2e56e36b75d2696ae7a98914e2a8
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-11
/
11.10.1--string_concat.sv
blob: 72d22f69b9943d38fd6fa3e647da8aa8f899a98d [
file
] [
log
] [
blame
]
/*
:name: string_concat
:description: string concatenation test
:should_fail: 0
:tags: 11.10.1
*/
module
top
();
bit
[
8
*
14
:
1
]
a
;
bit
[
8
*
14
:
1
]
b
;
initial
begin
a
=
"Test"
;
b
=
"TEST"
;
$display
({
a
,
b
});
end
endmodule