summaryrefslogtreecommitdiff
path: root/testsuite/tests/partial-sigs/should_compile/EqualityConstraint.hs
blob: 170af6462dbb59e1af0f6bd42f50c425947dc55a (plain)
1
2
3
4
5
{-# LANGUAGE PartialTypeSignatures, TypeFamilies #-}
module EqualityConstraint where

foo :: a ~ Bool => (a, _)
foo = (True, False)