blob: a357eba1ed259a982ba7224f3ed3c196fb98986c [file] [log] [blame]
/*
:name: insert
:description: Test queues insert function support
:should_fail: 0
:tags: 7.10.2.2 7.10.2
*/
module top ();
int q[$];
initial begin
q.insert(0, 1);
$display(":assert: (%d == 1)", q.size);
$display(":assert: (%d == 1)", q[0]);
end
endmodule