packages feed

liquidhaskell-0.8.10.7: tests/names/pos/Set01.hs

-- TEST that the name `member` is properly resolved to Set_mem. 
-- TAG: LOGICMAP 

module Set00 where 

import Data.Set as S

{-@ add :: x:a -> [a] -> {v:[a] | member x (listElts v)} @-}
add :: a -> [a] -> [a]
add x xs = x : xs