From 8c3c133342ad4b80871fddc6223b58c717e2b37e Mon Sep 17 00:00:00 2001 From: Stephen Diehl Date: Tue, 2 Oct 2018 10:37:58 +0100 Subject: [PATCH] Fix for TypeInType before 8.6 --- src/Protolude/Base.hs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Protolude/Base.hs b/src/Protolude/Base.hs index f4cae809d..ddc9301b3 100644 --- a/src/Protolude/Base.hs +++ b/src/Protolude/Base.hs @@ -123,9 +123,10 @@ import GHC.Records as X ( #if ( __GLASGOW_HASKELL__ >= 800 ) import Data.Kind as X ( type Type -#if ( __GLASGOW_HASKELL__ < 806 ) +#if ( __GLASGOW_HASKELL__ < 805 ) , type (*) #endif + , type Type ) #endif