packages feed

liquidhaskell-0.8.2.2: tests/pos/monad0.hs

module Monad where

-- create :: Int -> (Ptr Word8 -> IO ()) -> IO ByteString
create l = do
    fp <- mallocByteString l
    return ()

data P a = P a

mallocByteString :: a -> IO (P a)
mallocByteString l = undefined