Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
98dd329c028fec285730d65e09a31eaf63609ccb
/
.
/
src
/
Testcases
/
Google
/
chapter-11
/
11.4.14.1--stream_concat.sv
blob: b10d4689126b024b3a50921cdcdae175a0237409 [
file
] [
log
] [
blame
]
/*
:name: stream_concat
:description: stream concatenation test
:should_fail: 0
:tags: 11.4.14.1
*/
module
top
();
int
a
=
{
"A"
,
"B"
,
"C"
,
"D"
};
int
b
=
{
"E"
,
"F"
,
"G"
,
"H"
};
logic
[
63
:
0
]
c
;
initial
begin
c
=
{>>
byte
{
a
,
b
}};
end
endmodule