Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
4a79a47b7dd03dd4b2776ee40322b0149935d234
/
.
/
src
/
Testcases
/
Google
/
chapter-7
/
queues
/
size.sv
blob: d2612d294a4bf9032a562755b295969ea6817811 [
file
] [
log
] [
blame
]
/*
:name: size
:description: Test queues size support
:should_fail: 0
:tags: 7.10.2.1 7.10.2
:type: simulation parsing
*/
module
top
();
int
q
[
$
];
initial
begin
$display
(
":assert: (%d == 0)"
,
q
.
size
);
end
endmodule