blob: b7bd407fb0b4a1733e3d62d0439ef7e95a543939 [file] [log] [blame]
/*
:name: jump_continue
:description: A module testing continue statement
:should_fail: 0
:tags: 12.8
:type: simulation parsing
*/
module jump_tb ();
initial begin
for (int i = 0; i < 256; i++)begin
if(i < 255)
continue;
$display(":assert:(%d == 255)", i);
end
end
endmodule