summaryrefslogtreecommitdiff
path: root/testsuite/tests/lib/IO/hIsEOF001.hs
blob: 2e5dbdcb0ac3943b3a6b0fb68ecf3bde5c9e00c1 (plain)
1
2
3
4
5
6
7
-- !!! hIsEOF (on stdout)

import System.IO ( hIsEOF, stdout )

main = do
  flg <- hIsEOF stdout `catch` \ _ -> putStrLn "hIsEOF failed" >> return False
  print flg