packages feed

liquidhaskell-0.8.2.0: tests/todo/LocalSpecTyVar.hs

module LocalSpecTyVar where

foo = go
  where
    {-@ go :: xs:[a] -> {v:[a] | (len v) > (len xs)} @-}
    go []     = []
    go (x:xs) = x : go xs