Suppose i run a loop and inside the loop i create a fork join_none and try to execute it. what will happen on the next iteration of the loop does fork overrides the previous fork or the every time the fork is started again as we execute the loop body.
Code
initial begin
repeat(10);
begin
fork
join_none
end
end