summaryrefslogtreecommitdiff
path: root/libraries/base/tests/IO/T4895.hs
blob: 486743463c8de5bf682fd78defe3203fb8566509 (plain)
1
2
3
4
5
6
7
8
9
module Main where
import Foreign.Marshal.Alloc
import System.IO

main = do
  h <- openBinaryFile "T4895.hs" ReadMode
  allocaBytes 10 $ \ptr -> hGetBuf h ptr 10
  some <- allocaBytes 10 $ \ptr -> hGetBufSome h ptr 10
  print some