From 95e3eafc662db08b2aa0f48959ed6831dda8e532 Mon Sep 17 00:00:00 2001 From: simonpj Date: Wed, 11 Dec 2002 11:59:26 +0000 Subject: [PATCH] [project @ 2002-12-11 11:59:26 by simonpj] Give -> the correct kind! --- ghc/compiler/types/TypeRep.lhs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ghc/compiler/types/TypeRep.lhs b/ghc/compiler/types/TypeRep.lhs index 1bb3479..1ea81e7 100644 --- a/ghc/compiler/types/TypeRep.lhs +++ b/ghc/compiler/types/TypeRep.lhs @@ -364,7 +364,8 @@ instance Binary Kind where We define a few wired-in type constructors here to avoid module knots \begin{code} -funTyCon = mkFunTyCon funTyConName (mkArrowKinds [liftedTypeKind, liftedTypeKind] liftedTypeKind) +funTyCon = mkFunTyCon funTyConName (mkArrowKinds [openTypeKind, openTypeKind] liftedTypeKind) + -- Functions can take and return either lifted or unlifted types \end{code} ------------------------------------------ -- 1.7.10.4