packages feed

liquidhaskell-0.9.0.2.1: tests/neg/Ex0_unsafe.hs

{-@ LIQUID "--expect-any-error" @-}
{-@ LIQUID "--pruneunsorted" @-}
module Ex0_unsafe () where

-- Testing "existential-types"

{-@ foldN :: forall a <p :: x0000:Int -> x1111:a -> Bool>. 
                (i:Int -> a<p i> -> a<p (i+1)>)
              -> n:{v: Int | v >= 0}
              -> a <p 0>
              -> a <p n>
  @-}

foldN :: (Int -> a -> a) -> Int -> a -> a
foldN f n = go 0
  where go i x | i < n     = go (i+1) (f i x)
               | otherwise = x


fooBar :: (Int -> a -> a) -> Int -> a -> a
fooBar f n = go 0
  where go i x | i < n     = go (i+1) (f i x)
               | otherwise = x


{-@ count :: m: {v: Int | v > 0 } -> {v: Int | v = 44 } @-}
count :: Int -> Int
count m = foldN (\_ n -> n + 1) m 0
-- count m = fooBar (\_ n -> n + 1) m 0