liquidhaskell-0.9.0.2.1: tests/pos/Eq_poly_measure.hs
module Eq_poly_measure () where
import Language.Haskell.Liquid.Prelude
{-@ data Thing a = P (unThing :: a) @-}
data Thing a = P a
property :: Bool
property = chk t1
where
chk (P x) = liquidAssertB x
t1 :: Thing Bool
t1 = P True