blob: f8df02c4fc496275bfc267c3c7d1c430d994ffd8 [file] [log] [blame]
/*
:name: pop_front
:description: Test queues pop_front function support
:should_fail: 0
:tags: 7.10.2.4 7.10.2
*/
module top ();
int q[$];
int r;
initial begin
q.push_back(2);
q.push_back(3);
q.push_back(4);
r = q.pop_front;
$display(":assert: (%d == 2)", q.size);
$display(":assert: (%d == 2)", r);
end
endmodule