blob: fc622982d891d7745246fa8f65ebd202ff008954 [file] [log] [blame]
/*
:name: unpack_stream
:description: stream unpack test
:should_fail: 0
:tags: 11.4.14.3
*/
module top();
int a = 1;
int b = 2;
int c = 3;
initial begin
bit [95:0] d = {<<{a, b, c}};
end
endmodule