blob: f0e6409bf7cec6ee8b9807881f435cdcaea4f0b1 [file] [log] [blame]
/*
:name: jump_continue
:description: A module testing continue statement
:should_fail: 0
:tags: 12.8
*/
module jump_tb ();
initial begin
for (int i = 0; i < 256; i++)begin
if(i < 100)
continue;
$display(i);
end
end
endmodule