blob: 1e1732c1fdb36ace1f61943d6b7600065a8c96a1 [file] [log] [blame]
/*
:name: event_nonblocking_assignment_repeat
:description: event non blk assignment repeat
:should_fail: 0
:tags: 9.4.5
*/
module block_tb ();
reg a = 0;
reg b = 1;
wire clk = 0;
initial begin
a = repeat(3) @(posedge clk) b;
end
endmodule