liquidhaskell-cabal-demo-0.1.1.0: src/A.hs
module A where
{-@ plus :: x:Int -> y:Int -> {v:Int | v = x + y} @-}
plus :: Int -> Int -> Int
plus x y = x + y
test :: String -> (String, String)
test = ("test", )
module A where
{-@ plus :: x:Int -> y:Int -> {v:Int | v = x + y} @-}
plus :: Int -> Int -> Int
plus x y = x + y
test :: String -> (String, String)
test = ("test", )