summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-regress/concurrent/should_run/conc028.hs
blob: 4d3d16866af607512c52ee98077006a8954254ec (plain)
1
2
3
4
5
6
7
8
9
10
11
-- test tryPutMVar

import Control.Concurrent

main = do
  m <- newMVar ()
  r <- tryPutMVar m ()
  print r
  takeMVar m
  r <- tryPutMVar m ()
  print r