Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
d4bc91e228686cd8ec9eee019b4f0db9b7bc26cb
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-11
/
11.4.14.2--reorder_stream.sv
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