Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
36edd2bd845c2e56e36b75d2696ae7a98914e2a8
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-11
/
11.4.14.3--unpack_stream_inv.sv
blob: cb2aa23016f49acdaa00c1c0e6bb862f99637afb [
file
] [
log
] [
blame
]
/*
:name: unpack_stream_inv
:description: invalid stream unpack test
:should_fail: 1
:tags: 11.4.14.3
*/
module
top
();
int
a
=
1
;
int
b
=
2
;
int
c
=
3
;
initial
begin
int
d
=
{<<{
a
,
b
,
c
}};
end
endmodule