liquidhaskell-0.7.0.0: tests/pos/coretologic.hs
module CoreToLog where
import Data.Set
-- TODO: NOPROP: transition to this
{- type IsEmp a = {v:[a] | Data.Set.elems v = Data.Set.empty 10 } @-}
{- predicate Data.Set.elems Xs = listElts Xs @-}
{- predicate Data.Set.empty X = Set_empty 0 @-}
-- ISSUE: can we please allow things like `empty` to also
-- appear in type and alias specifications, not just in
-- measures as in `goo` below?
{-@ type IsEmp a = {v:[a] | Data.Set.elems v = Data.Set.empty } @-}
{-@ foo :: IsEmp Int @-}
foo :: [Int]
foo = []
{-@ measure goo @-}
goo :: (Ord a) => [a] -> Set a
goo [] = empty
goo (x:xs) = (singleton x) `union` (goo xs)