blob: 721c5c6ecfb925214936b6658463259922d65db7 [file] [log] [blame]
/*
:name: repeat_loop
:description: A module testing repeat loop
:should_fail: 0
:tags: 12.7.2
*/
module repeat_tb ();
int a = 128;
initial begin
repeat(a)
$display("repeat");
end
endmodule