blob: d77622575236858c6e7882b4d2f231ce7bcc8258 [file] [log] [blame]
/*
:name: unpack_stream_pad
:description: padded 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 [127:0] d = {<<{a, b, c}};
end
endmodule