Fork join_none inside for loop

In reply to dave_59:

Hi Dave ,
For The Following Code


for( int j = 1; j <= 3; ++j )
 fork

 begin
  
  automatic int m = j; // the value of m is undetermined
  #k $write( "%0d", k );
 
 end

 join_none

The LRM Says the Value of m is undetermined . Why is That so ?