liquidhaskell-0.8.2.2: tests/errors/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 <= nn} -> _ -> _ @-}
go i acc
| i >= n = acc
| otherwise = go (i+1) (acc + xs !! i)