liquidhaskell-0.4.0.0: tests/pos/LocalHole.hs
{-@ LIQUID "--no-termination" @-}
module LocalHole where
{-@ assume (!!) :: xs:[a] -> {v:Nat | v < len xs} -> a @-}
mysum xs = go 0 0
where
n = length xs
{-@ go :: i:{Nat | i <= n} -> _ -> _ @-}
go i acc
| i >= n = acc
| otherwise = go (i+1) (acc + xs !! i)