[project @ 2001-05-21 15:25:24 by simonmar]
[ghc-hetmet.git] / ghc / tests / lib / IORef / ioref001.hs
similarity index 92%
rename from ghc/tests/lib/should_run/ioexts001.hs
rename to ghc/tests/lib/IORef/ioref001.hs
index 7b9d1b3..50bd747 100644 (file)
@@ -2,7 +2,7 @@
 
 module Main where
 
-import IOExts
+import IORef
 
 loop r 0 = return ()
 loop r c = loop r (c-1) >> writeIORef r 42