liquidhaskell-0.7.0.0: tests/elim/ElimMonad2.hs
-- | A simple depth test for `--eliminate`. The size of the max KInfo depth is
-- about 2x the number of calls to `incr`.
module ElimMonad (prop) where
{-@ prop :: x:Nat -> IO {v:Int | v = x + 20} @-}
prop :: Int -> IO Int
prop x = do
x <- if (x >= 0) then incr x else incr x
x <- if (x >= 0) then incr x else incr x
x <- if (x >= 0) then incr x else incr x
x <- if (x >= 0) then incr x else incr x
x <- if (x >= 0) then incr x else incr x
x <- if (x >= 0) then incr x else incr x
x <- if (x >= 0) then incr x else incr x
x <- if (x >= 0) then incr x else incr x
x <- if (x >= 0) then incr x else incr x
x <- if (x >= 0) then incr x else incr x
x <- if (x >= 0) then incr x else incr x
x <- if (x >= 0) then incr x else incr x
x <- if (x >= 0) then incr x else incr x
x <- if (x >= 0) then incr x else incr x
x <- if (x >= 0) then incr x else incr x
x <- if (x >= 0) then incr x else incr x
x <- if (x >= 0) then incr x else incr x
x <- if (x >= 0) then incr x else incr x
x <- if (x >= 0) then incr x else incr x
x <- if (x >= 0) then incr x else incr x
return x
{-@ incr :: dog:Int -> IO {v:Int | v == dog + 1} @-}
incr :: Int -> IO Int
incr cat = return (cat + 1)