[project @ 2000-03-21 15:54:25 by simonmar]
[ghc-hetmet.git] / ghc / tests / concurrent / should_run / conc018.hs
1 import Concurrent
2 import Exception
3
4 main = do
5   catchAllIO (do
6         m <- newMVar ()
7         putMVar m ()
8      )
9      (\e -> print e)
10