blob: 29e02c72c61769f1cc923b76535d9af32e127460 [file] [log] [blame]
/*
:name: event_blocking_assignment_delay
:description: event blk assignment delay
:should_fail: 0
:tags: 9.4.5
*/
module block_tb ();
reg a = 0;
reg b = 1;
initial begin
a = #10 b;
end
endmodule