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