summaryrefslogtreecommitdiff
path: root/testsuite
diff options
context:
space:
mode:
authorSimon Peyton Jones <simonpj@microsoft.com>2021-01-27 11:35:45 +0000
committerMarge Bot <ben+marge-bot@smart-cactus.org>2021-01-30 14:13:00 -0500
commit69cab37ae89db16cfd0b734d7fc657e56402a255 (patch)
tree2984338f89d488e35e19bf469968bbdabd625d83 /testsuite
parent73fa75f5a96d515e22069233e894eac3c53a3d6d (diff)
downloadhaskell-69cab37ae89db16cfd0b734d7fc657e56402a255.tar.gz
Zonk the returned kind in tcFamTyPats
The motivation is given in Note [tcFamTyPats: zonking the result kind]. Fixes #19250 -- the fix is easy.
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/tests/polykinds/T19250.hs12
-rw-r--r--testsuite/tests/polykinds/all.T1
2 files changed, 13 insertions, 0 deletions
diff --git a/testsuite/tests/polykinds/T19250.hs b/testsuite/tests/polykinds/T19250.hs
new file mode 100644
index 0000000000..6781e4bd39
--- /dev/null
+++ b/testsuite/tests/polykinds/T19250.hs
@@ -0,0 +1,12 @@
+{-# LANGUAGE TypeOperators, TypeFamilies, ConstraintKinds, PolyKinds, DataKinds, EmptyDataDecls #-}
+
+module T19250 where
+
+import Data.Kind
+
+type Exp a = a -> Type
+
+type family Eval (e :: Exp a) :: a
+
+data Collapse :: [Constraint] -> Exp Constraint
+type instance Eval (Collapse '[]) = ()
diff --git a/testsuite/tests/polykinds/all.T b/testsuite/tests/polykinds/all.T
index c82f275f65..1be9bb11b5 100644
--- a/testsuite/tests/polykinds/all.T
+++ b/testsuite/tests/polykinds/all.T
@@ -234,3 +234,4 @@ test('T18855', normal, compile, [''])
test('T19092', normal, compile, [''])
test('T19093', normal, compile, [''])
test('T19094', normal, compile, [''])
+test('T19250', normal, compile, [''])