summaryrefslogtreecommitdiff
path: root/libraries/base/tests/T7773.hs
blob: 495cd7abd97e38c72edc59daadb458026c96e366 (plain)
1
2
3
4
5
6
7
8
9
import Control.Concurrent
import System.Posix.IO

main = do
  putStrLn "hello"
  fd <- openFd "/dev/random" ReadOnly Nothing defaultFileFlags
  threadWaitRead fd
  putStrLn "goodbye"