bug RSSA backend

Matthew Fluet fluet@CS.Cornell.EDU
Thu, 17 Jan 2002 10:22:09 -0500 (EST)


The following program fails to terminate on second execution with both
-native true and -native false.  I think something is messed up in
MLton.Random.alphaNumString, because it seems to always return EEEEEE.

------------------------------------------
val (w, out) = MLton.TextIO.mkstemp "temp"
val _ = print (w^"\n")
val _ = TextIO.output (out, "ABCDEF\n")
val _ = TextIO.closeOut out
------------------------------------------