Skip to content

Commit

Permalink
Support (in theory) GHC 9.6 (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisdone authored Oct 28, 2024
1 parent 1c18220 commit fbf2cd0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Hell.hs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
-- made some of this more ergonomic.

{-# options_ghc -Wno-unused-foralls #-}
{-# LANGUAGE CPP #-}
{-# LANGUAGE ExistentialQuantification, TypeApplications, BlockArguments, NamedFieldPuns, DataKinds #-}
{-# LANGUAGE GADTs, PolyKinds, TupleSections, StandaloneDeriving, Rank2Types, FlexibleContexts #-}
{-# LANGUAGE ViewPatterns, LambdaCase, ScopedTypeVariables, PatternSynonyms, TemplateHaskell #-}
Expand Down Expand Up @@ -75,7 +76,10 @@ import Data.Vector (Vector)
import Data.Aeson (Value)
import Data.Text (Text)
import Data.ByteString (ByteString)
import GHC.Types
#if __GLASGOW_HASKELL__ >= 906
import Control.Monad
#endif
import GHC.Types (Type)
import GHC.TypeLits
import Type.Reflection (SomeTypeRep(..), TypeRep, typeRepKind, typeRep, pattern TypeRep)

Expand Down

0 comments on commit fbf2cd0

Please sign in to comment.