blob: 457225bde6868b2494d8a9ff7b9b51a697356608 [file] [log] [blame]
/*
:name: reorder_stream
:description: stream reordering test
:should_fail: 0
:tags: 11.4.14.2
*/
module top();
int a = {"A", "B", "C", "D"};
int b;
initial begin
b = { << byte {a}};
end
endmodule