liquidhaskell-0.9.0.2.1: tests/pos/Holes_Slicing.hs
-- TODO-REBARE: What the hell is noslice?
{- LIQUID "--noslice" @-}
module Holes_Slicing () where
{-@ measure isFoo :: A -> B -> Bool @-}
{-@ isFooF :: a:A -> b:B -> {v:Bool | v <=> isFoo a b} @-}
isFooF :: A -> B -> Bool
isFooF a b = undefined
{-@ prop1 :: u:A -> p:B -> {v : Int | isFoo u p <=> (v < 2) } @-}
prop1 :: A -> B -> Int
prop1 = undefined
{-@ foo :: A -> B -> _ @-}
foo :: A -> B -> Int
foo a b = if isFooF a b then 0 else 2
data A
data B