Plan 9 from Bell Labs’s /usr/web/sources/contrib/fernan/nhc98/tests/conformance98/IOExtras/IORef/Main.hs
import NHC.IOExtras main = do x <- newIORef undefined writeIORef x 3 y <- readIORef x print y