blob: fa8180eb84e05478cefafe9af4bc5154c30349e9 [file]
module test;
event e;
initial begin
repeat (5) begin
#10;
->e;
end
end
endmodule